Struct zng_var::types::WeakArcVar
source · pub struct WeakArcVar<T: VarValue>(/* private fields */);
Expand description
Weak reference to a ArcVar<T>
.
Implementations§
Trait Implementations§
source§impl<T: VarValue> AnyWeakVar for WeakArcVar<T>
impl<T: VarValue> AnyWeakVar for WeakArcVar<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: Clone + VarValue> Clone for WeakArcVar<T>
impl<T: Clone + VarValue> Clone for WeakArcVar<T>
source§fn clone(&self) -> WeakArcVar<T>
fn clone(&self) -> WeakArcVar<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: VarValue> Default for WeakArcVar<T>
impl<T: VarValue> Default for WeakArcVar<T>
source§impl<T: VarValue> WeakVar<T> for WeakArcVar<T>
impl<T: VarValue> WeakVar<T> for WeakArcVar<T>
source§type Upgrade = ArcVar<T>
type Upgrade = ArcVar<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 WeakArcVar<T>
impl<T> !RefUnwindSafe for WeakArcVar<T>
impl<T> Send for WeakArcVar<T>
impl<T> Sync for WeakArcVar<T>
impl<T> Unpin for WeakArcVar<T>
impl<T> !UnwindSafe for WeakArcVar<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