pub enum AiPromptProgressStatus {
Created,
InProgress,
Finished,
Failed,
Canceled,
Unknown,
}Expand description
Internal The status of a prompt workflow.
Variants§
Created
InProgress
Finished
Failed
Canceled
Unknown
Catch-all for unknown/new variants added by Linear.
Trait Implementations§
Source§impl Clone for AiPromptProgressStatus
impl Clone for AiPromptProgressStatus
Source§fn clone(&self) -> AiPromptProgressStatus
fn clone(&self) -> AiPromptProgressStatus
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 AiPromptProgressStatus
impl Debug for AiPromptProgressStatus
Source§impl<'de> Deserialize<'de> for AiPromptProgressStatus
impl<'de> Deserialize<'de> for AiPromptProgressStatus
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 AiPromptProgressStatus
impl PartialEq for AiPromptProgressStatus
Source§impl Serialize for AiPromptProgressStatus
impl Serialize for AiPromptProgressStatus
impl Eq for AiPromptProgressStatus
impl StructuralPartialEq for AiPromptProgressStatus
Auto Trait Implementations§
impl Freeze for AiPromptProgressStatus
impl RefUnwindSafe for AiPromptProgressStatus
impl Send for AiPromptProgressStatus
impl Sync for AiPromptProgressStatus
impl Unpin for AiPromptProgressStatus
impl UnsafeUnpin for AiPromptProgressStatus
impl UnwindSafe for AiPromptProgressStatus
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