pub enum ResponseObjectStatus {
Completed,
InProgress,
Failed,
Cancelled,
}Expand description
ResponseObjectStatus
JSON schema
{
"type": "string",
"enum": [
"completed",
"in_progress",
"failed",
"cancelled"
]
}Variants§
Trait Implementations§
Source§impl Clone for ResponseObjectStatus
impl Clone for ResponseObjectStatus
Source§fn clone(&self) -> ResponseObjectStatus
fn clone(&self) -> ResponseObjectStatus
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 moreimpl Copy for ResponseObjectStatus
Source§impl Debug for ResponseObjectStatus
impl Debug for ResponseObjectStatus
Source§impl<'de> Deserialize<'de> for ResponseObjectStatus
impl<'de> Deserialize<'de> for ResponseObjectStatus
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 Display for ResponseObjectStatus
impl Display for ResponseObjectStatus
impl Eq for ResponseObjectStatus
Source§impl FromStr for ResponseObjectStatus
impl FromStr for ResponseObjectStatus
Source§impl Hash for ResponseObjectStatus
impl Hash for ResponseObjectStatus
Source§impl Ord for ResponseObjectStatus
impl Ord for ResponseObjectStatus
Source§fn cmp(&self, other: &ResponseObjectStatus) -> Ordering
fn cmp(&self, other: &ResponseObjectStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ResponseObjectStatus
impl PartialEq for ResponseObjectStatus
Source§fn eq(&self, other: &ResponseObjectStatus) -> bool
fn eq(&self, other: &ResponseObjectStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ResponseObjectStatus
impl PartialOrd for ResponseObjectStatus
Source§impl Serialize for ResponseObjectStatus
impl Serialize for ResponseObjectStatus
impl StructuralPartialEq for ResponseObjectStatus
Source§impl TryFrom<&String> for ResponseObjectStatus
impl TryFrom<&String> for ResponseObjectStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ResponseObjectStatus
impl TryFrom<&str> for ResponseObjectStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ResponseObjectStatus
impl TryFrom<String> for ResponseObjectStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ResponseObjectStatus
impl RefUnwindSafe for ResponseObjectStatus
impl Send for ResponseObjectStatus
impl Sync for ResponseObjectStatus
impl Unpin for ResponseObjectStatus
impl UnsafeUnpin for ResponseObjectStatus
impl UnwindSafe for ResponseObjectStatus
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