pub struct Boxed<T>(pub T);Expand description
A newtype wrapper used to implement the BaseValue trait on types not
defined in this crate.
This type is just a helper: users can also implement the BaseValue trait directly on their
types if the type is defined in the crate in which the implementation is defined, or if they
need custom logic for boxing or unboxing the type.
Tuple Fields§
§0: TImplementations§
Trait Implementations§
Source§impl<T: Ord> Ord for Boxed<T>
impl<T: Ord> Ord for Boxed<T>
Source§impl<T: PartialOrd> PartialOrd for Boxed<T>
impl<T: PartialOrd> PartialOrd for Boxed<T>
impl<T: Copy> Copy for Boxed<T>
impl<T: Eq> Eq for Boxed<T>
impl<T> StructuralPartialEq for Boxed<T>
Auto Trait Implementations§
impl<T> Freeze for Boxed<T>where
T: Freeze,
impl<T> RefUnwindSafe for Boxed<T>where
T: RefUnwindSafe,
impl<T> Send for Boxed<T>where
T: Send,
impl<T> Sync for Boxed<T>where
T: Sync,
impl<T> Unpin for Boxed<T>where
T: Unpin,
impl<T> UnwindSafe for Boxed<T>where
T: UnwindSafe,
Blanket Implementations§
§impl<T, A, P> Access<T> for P
impl<T, A, P> Access<T> for P
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<T, A> DynAccess<T> for Awhere
A: Access<T>,
<A as Access<T>>::Guard: 'static,
impl<T, A> DynAccess<T> for Awhere
A: Access<T>,
<A as Access<T>>::Guard: 'static,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more