pub enum KnowledgeStatus {
Active,
Inactive,
Deprecated,
}Expand description
Status of a knowledge resource. Mirrors ToolStatus.
Variants§
Trait Implementations§
Source§impl Clone for KnowledgeStatus
impl Clone for KnowledgeStatus
Source§fn clone(&self) -> KnowledgeStatus
fn clone(&self) -> KnowledgeStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KnowledgeStatus
impl Debug for KnowledgeStatus
Source§impl Default for KnowledgeStatus
impl Default for KnowledgeStatus
Source§fn default() -> KnowledgeStatus
fn default() -> KnowledgeStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KnowledgeStatus
impl<'de> Deserialize<'de> for KnowledgeStatus
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 Eq for KnowledgeStatus
Source§impl PartialEq for KnowledgeStatus
impl PartialEq for KnowledgeStatus
Source§fn eq(&self, other: &KnowledgeStatus) -> bool
fn eq(&self, other: &KnowledgeStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KnowledgeStatus
impl Serialize for KnowledgeStatus
impl StructuralPartialEq for KnowledgeStatus
Auto Trait Implementations§
impl Freeze for KnowledgeStatus
impl RefUnwindSafe for KnowledgeStatus
impl Send for KnowledgeStatus
impl Sync for KnowledgeStatus
impl Unpin for KnowledgeStatus
impl UnsafeUnpin for KnowledgeStatus
impl UnwindSafe for KnowledgeStatus
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