pub enum PersistentTransformationKind {
Once,
Always,
}Expand description
How long a stored trigger lives.
Variants§
Once
Applied once, then removed as soon as an application produced changes.
Always
Applied after every write, indefinitely.
Trait Implementations§
Source§impl Clone for PersistentTransformationKind
impl Clone for PersistentTransformationKind
Source§fn clone(&self) -> PersistentTransformationKind
fn clone(&self) -> PersistentTransformationKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PersistentTransformationKind
Source§impl Debug for PersistentTransformationKind
impl Debug for PersistentTransformationKind
impl Eq for PersistentTransformationKind
Source§impl Hash for PersistentTransformationKind
impl Hash for PersistentTransformationKind
impl StructuralPartialEq for PersistentTransformationKind
Auto Trait Implementations§
impl Freeze for PersistentTransformationKind
impl RefUnwindSafe for PersistentTransformationKind
impl Send for PersistentTransformationKind
impl Sync for PersistentTransformationKind
impl Unpin for PersistentTransformationKind
impl UnsafeUnpin for PersistentTransformationKind
impl UnwindSafe for PersistentTransformationKind
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