pub enum PromptState {
Submitted,
Locked,
Executing,
Completed,
Failed,
}Variants§
Trait Implementations§
Source§impl Clone for PromptState
impl Clone for PromptState
Source§fn clone(&self) -> PromptState
fn clone(&self) -> PromptState
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 PromptState
impl Debug for PromptState
Source§impl<'de> Deserialize<'de> for PromptState
impl<'de> Deserialize<'de> for PromptState
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 PromptState
impl PartialEq for PromptState
Source§impl Serialize for PromptState
impl Serialize for PromptState
impl Eq for PromptState
impl StructuralPartialEq for PromptState
Auto Trait Implementations§
impl Freeze for PromptState
impl RefUnwindSafe for PromptState
impl Send for PromptState
impl Sync for PromptState
impl Unpin for PromptState
impl UnsafeUnpin for PromptState
impl UnwindSafe for PromptState
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