pub enum GateType {
Routine,
Novel,
Urgent,
}Expand description
Gate classification — controls how deep the processing pipeline runs.
Variants§
Routine
Short acknowledgments (“ok”, “yes”, emojis). Skip enrichment entirely.
Novel
New topic, full enrichment pipeline.
Urgent
Error/crisis/correction. Highest resource allocation.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GateType
impl<'de> Deserialize<'de> for GateType
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
impl Copy for GateType
impl Eq for GateType
impl StructuralPartialEq for GateType
Auto Trait Implementations§
impl Freeze for GateType
impl RefUnwindSafe for GateType
impl Send for GateType
impl Sync for GateType
impl Unpin for GateType
impl UnsafeUnpin for GateType
impl UnwindSafe for GateType
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