pub struct TraitRef<T>where
T: ?Sized,{ /* private fields */ }
Expand description
Similar to a ReadRef<T>
, but contains a value trait
object instead.
The only way to interact with a TraitRef<T>
is by passing
it around or turning it back into a value trait vc by calling
ReadRef::cell
.
Internally it stores a reference counted reference to a value on the heap.
Implementations§
Trait Implementations§
Source§impl<'de, T> Deserialize<'de> for TraitRef<T>
impl<'de, T> Deserialize<'de> for TraitRef<T>
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
impl<T> Eq for TraitRef<T>
impl<T: NonLocalValue + ?Sized> NonLocalValue for TraitRef<T>
impl<T: OperationValue + ?Sized> OperationValue for TraitRef<T>
impl<T> Send for TraitRef<T>where
T: ?Sized,
impl<T> Sync for TraitRef<T>where
T: ?Sized,
impl<T> Unpin for TraitRef<T>where
T: ?Sized,
Auto Trait Implementations§
impl<T> Freeze for TraitRef<T>where
T: ?Sized,
impl<T> !RefUnwindSafe for TraitRef<T>
impl<T> !UnwindSafe for TraitRef<T>
Blanket Implementations§
§impl<T> Any for Twhere
T: Any,
impl<T> Any for Twhere
T: Any,
fn get_type_id(&self) -> TypeId
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,
Source§impl<T> DynamicEqHash for T
impl<T> DynamicEqHash for T
§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
§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<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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