pub enum AssistantStatus {
Active,
Inactive,
Training,
Error,
Deploying,
}Expand description
Assistant status enumeration
Variants§
Active
Assistant is active and ready
Inactive
Assistant is inactive
Training
Assistant is being trained
Error
Assistant has errors
Deploying
Assistant is being deployed
Trait Implementations§
Source§impl Clone for AssistantStatus
impl Clone for AssistantStatus
Source§fn clone(&self) -> AssistantStatus
fn clone(&self) -> AssistantStatus
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 AssistantStatus
impl Debug for AssistantStatus
Source§impl<'de> Deserialize<'de> for AssistantStatus
impl<'de> Deserialize<'de> for AssistantStatus
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
Auto Trait Implementations§
impl Freeze for AssistantStatus
impl RefUnwindSafe for AssistantStatus
impl Send for AssistantStatus
impl Sync for AssistantStatus
impl Unpin for AssistantStatus
impl UnwindSafe for AssistantStatus
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