pub enum AiConversationStatus {
Active,
Complete,
AwaitingInput,
Error,
Pending,
Unknown,
}Expand description
The status of an AI conversation.
Variants§
Active
Complete
AwaitingInput
Error
Pending
Unknown
Catch-all for unknown/new variants added by Linear.
Trait Implementations§
Source§impl Clone for AiConversationStatus
impl Clone for AiConversationStatus
Source§fn clone(&self) -> AiConversationStatus
fn clone(&self) -> AiConversationStatus
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 AiConversationStatus
impl Debug for AiConversationStatus
Source§impl<'de> Deserialize<'de> for AiConversationStatus
impl<'de> Deserialize<'de> for AiConversationStatus
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 AiConversationStatus
impl PartialEq for AiConversationStatus
Source§impl Serialize for AiConversationStatus
impl Serialize for AiConversationStatus
impl Eq for AiConversationStatus
impl StructuralPartialEq for AiConversationStatus
Auto Trait Implementations§
impl Freeze for AiConversationStatus
impl RefUnwindSafe for AiConversationStatus
impl Send for AiConversationStatus
impl Sync for AiConversationStatus
impl Unpin for AiConversationStatus
impl UnsafeUnpin for AiConversationStatus
impl UnwindSafe for AiConversationStatus
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