Struct zng_var::types::WeakContextualizedVar
source · pub struct WeakContextualizedVar<T> { /* private fields */ }
Expand description
Weak var that upgrades to an uninitialized ContextualizedVar<T, S>
.
Trait Implementations§
source§impl<T: VarValue> AnyWeakVar for WeakContextualizedVar<T>
impl<T: VarValue> AnyWeakVar for WeakContextualizedVar<T>
source§fn clone_any(&self) -> BoxedAnyWeakVar
fn clone_any(&self) -> BoxedAnyWeakVar
Clone the weak reference.
source§fn strong_count(&self) -> usize
fn strong_count(&self) -> usize
Gets the number of strong references to the variable. Read more
source§fn weak_count(&self) -> usize
fn weak_count(&self) -> usize
Gets the number of weak references to the variable. Read more
source§fn upgrade_any(&self) -> Option<BoxedAnyVar>
fn upgrade_any(&self) -> Option<BoxedAnyVar>
source§impl<T: VarValue> Clone for WeakContextualizedVar<T>
impl<T: VarValue> Clone for WeakContextualizedVar<T>
source§impl<T: VarValue> WeakVar<T> for WeakContextualizedVar<T>
impl<T: VarValue> WeakVar<T> for WeakContextualizedVar<T>
source§type Upgrade = ContextualizedVar<T>
type Upgrade = ContextualizedVar<T>
Output of
WeakVar::upgrade
.source§fn boxed(self) -> BoxedWeakVar<T>where
Self: Sized,
fn boxed(self) -> BoxedWeakVar<T>where
Self: Sized,
Gets the weak reference a as
BoxedWeakVar<T>
, does not double box.Auto Trait Implementations§
impl<T> Freeze for WeakContextualizedVar<T>
impl<T> !RefUnwindSafe for WeakContextualizedVar<T>
impl<T> Send for WeakContextualizedVar<T>where
T: Send,
impl<T> Sync for WeakContextualizedVar<T>where
T: Sync,
impl<T> Unpin for WeakContextualizedVar<T>where
T: Unpin,
impl<T> !UnwindSafe for WeakContextualizedVar<T>
Blanket Implementations§
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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