pub enum CompiledLifecycle {
Explicit,
AutoClose(CompiledTrigger),
}Expand description
Compiled lifecycle configuration.
Variants§
Explicit
Explicit lifecycle management (manual control)
AutoClose(CompiledTrigger)
Auto-close on trigger
Trait Implementations§
Source§impl Clone for CompiledLifecycle
impl Clone for CompiledLifecycle
Source§fn clone(&self) -> CompiledLifecycle
fn clone(&self) -> CompiledLifecycle
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 moreSource§impl Debug for CompiledLifecycle
impl Debug for CompiledLifecycle
Source§impl<'de> Deserialize<'de> for CompiledLifecycle
impl<'de> Deserialize<'de> for CompiledLifecycle
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CompiledLifecycle
impl PartialEq for CompiledLifecycle
Source§impl Serialize for CompiledLifecycle
impl Serialize for CompiledLifecycle
impl StructuralPartialEq for CompiledLifecycle
Auto Trait Implementations§
impl Freeze for CompiledLifecycle
impl RefUnwindSafe for CompiledLifecycle
impl Send for CompiledLifecycle
impl Sync for CompiledLifecycle
impl Unpin for CompiledLifecycle
impl UnwindSafe for CompiledLifecycle
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