pub enum TriggerStore {
Embedded,
Sidecar(Box<NamedTypesDecorator>),
}Expand description
Where a PersistentTransformationDecorator keeps its triggers.
Variants§
Embedded
In the decorated database itself (--embed-triggers).
Sidecar(Box<NamedTypesDecorator>)
In a separate companion database (the default).
Implementations§
Auto Trait Implementations§
impl Freeze for TriggerStore
impl RefUnwindSafe for TriggerStore
impl Send for TriggerStore
impl Sync for TriggerStore
impl Unpin for TriggerStore
impl UnsafeUnpin for TriggerStore
impl UnwindSafe for TriggerStore
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