pub enum AgenticSystemLifecycle {
Draft,
Published,
Deprecated,
}Expand description
How far along an agentic system design is.
A draft may be edited freely; publishing seals a revision so a run can name what it composed. Deprecation says “do not start new runs from this” without invalidating the ones already sealed.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AgenticSystemLifecycle
impl Clone for AgenticSystemLifecycle
impl Copy for AgenticSystemLifecycle
Source§impl Debug for AgenticSystemLifecycle
impl Debug for AgenticSystemLifecycle
Source§impl<'de> Deserialize<'de> for AgenticSystemLifecycle
impl<'de> Deserialize<'de> for AgenticSystemLifecycle
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 Display for AgenticSystemLifecycle
impl Display for AgenticSystemLifecycle
impl Eq for AgenticSystemLifecycle
Source§impl Hash for AgenticSystemLifecycle
impl Hash for AgenticSystemLifecycle
Source§impl Ord for AgenticSystemLifecycle
impl Ord for AgenticSystemLifecycle
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for AgenticSystemLifecycle
impl PartialEq for AgenticSystemLifecycle
Source§impl PartialOrd for AgenticSystemLifecycle
impl PartialOrd for AgenticSystemLifecycle
Source§impl Serialize for AgenticSystemLifecycle
impl Serialize for AgenticSystemLifecycle
impl StructuralPartialEq for AgenticSystemLifecycle
Auto Trait Implementations§
impl Freeze for AgenticSystemLifecycle
impl RefUnwindSafe for AgenticSystemLifecycle
impl Send for AgenticSystemLifecycle
impl Sync for AgenticSystemLifecycle
impl Unpin for AgenticSystemLifecycle
impl UnsafeUnpin for AgenticSystemLifecycle
impl UnwindSafe for AgenticSystemLifecycle
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