pub enum GetEnvStateVar<RC> {
NoEnvStateVar(NoEnvStateVarState<RC>),
EnvStateVar(EnvStateVarState<RC>),
}Variants§
NoEnvStateVar(NoEnvStateVarState<RC>)
EnvStateVar(EnvStateVarState<RC>)
Trait Implementations§
Source§impl<RC: Clone> Clone for GetEnvStateVar<RC>
impl<RC: Clone> Clone for GetEnvStateVar<RC>
Source§fn clone(&self) -> GetEnvStateVar<RC>
fn clone(&self) -> GetEnvStateVar<RC>
Returns a duplicate 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 moreAuto Trait Implementations§
impl<RC> Freeze for GetEnvStateVar<RC>
impl<RC> RefUnwindSafe for GetEnvStateVar<RC>where
RC: RefUnwindSafe,
impl<RC> Send for GetEnvStateVar<RC>where
RC: Send,
impl<RC> Sync for GetEnvStateVar<RC>where
RC: Sync,
impl<RC> Unpin for GetEnvStateVar<RC>where
RC: Unpin,
impl<RC> UnwindSafe for GetEnvStateVar<RC>where
RC: 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