pub enum CompiledAction {
Summarize {
target: String,
},
ExtractArtifacts {
target: String,
},
Checkpoint {
target: String,
},
Prune {
target: String,
criteria: CompiledFilter,
},
Notify {
target: String,
},
Inject {
target: String,
mode: CompiledInjectionMode,
},
AutoSummarize {
source_level: CompiledAbstractionLevel,
target_level: CompiledAbstractionLevel,
create_edges: bool,
},
}Expand description
Compiled lifecycle actions.
Variants§
Summarize
ExtractArtifacts
Checkpoint
Prune
Notify
Inject
AutoSummarize
Trait Implementations§
Source§impl Clone for CompiledAction
impl Clone for CompiledAction
Source§fn clone(&self) -> CompiledAction
fn clone(&self) -> CompiledAction
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 CompiledAction
impl Debug for CompiledAction
Source§impl<'de> Deserialize<'de> for CompiledAction
impl<'de> Deserialize<'de> for CompiledAction
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 CompiledAction
impl PartialEq for CompiledAction
Source§impl Serialize for CompiledAction
impl Serialize for CompiledAction
impl StructuralPartialEq for CompiledAction
Auto Trait Implementations§
impl Freeze for CompiledAction
impl RefUnwindSafe for CompiledAction
impl Send for CompiledAction
impl Sync for CompiledAction
impl Unpin for CompiledAction
impl UnwindSafe for CompiledAction
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