pub enum EffectPurity {
Pure,
Impure(Vec<String>),
Partial,
}Variants§
Trait Implementations§
Source§impl Clone for EffectPurity
impl Clone for EffectPurity
Source§fn clone(&self) -> EffectPurity
fn clone(&self) -> EffectPurity
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 Freeze for EffectPurity
impl RefUnwindSafe for EffectPurity
impl Send for EffectPurity
impl Sync for EffectPurity
impl Unpin for EffectPurity
impl UnsafeUnpin for EffectPurity
impl UnwindSafe for EffectPurity
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