Struct orx_selfref_col::NodeDataLazyClose
source · pub struct NodeDataLazyClose<T>(/* private fields */);
Expand description
Node data storage with lazy closure. In other words, the value is stored as it is and closing of a node means setting it to None.
Implementations§
source§impl<T> NodeDataLazyClose<T>
impl<T> NodeDataLazyClose<T>
Trait Implementations§
source§impl<T: Clone> Clone for NodeDataLazyClose<T>
impl<T: Clone> Clone for NodeDataLazyClose<T>
source§fn clone(&self) -> NodeDataLazyClose<T>
fn clone(&self) -> NodeDataLazyClose<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> Default for NodeDataLazyClose<T>
impl<T> Default for NodeDataLazyClose<T>
source§impl<T> From<T> for NodeDataLazyClose<T>
impl<T> From<T> for NodeDataLazyClose<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for NodeDataLazyClose<T>where
T: RefUnwindSafe,
impl<T> Send for NodeDataLazyClose<T>where
T: Send,
impl<T> Sync for NodeDataLazyClose<T>where
T: Sync,
impl<T> Unpin for NodeDataLazyClose<T>where
T: Unpin,
impl<T> UnwindSafe for NodeDataLazyClose<T>where
T: UnwindSafe,
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