pub enum ResponseFailedEventType {
ResponseFailed,
}Expand description
The type of the event. Always response.failed.
JSON schema
{
"description": "The type of the event. Always `response.failed`.\n",
"type": "string",
"enum": [
"response.failed"
],
"x-stainless-const": true
}Variants§
ResponseFailed
Trait Implementations§
Source§impl Clone for ResponseFailedEventType
impl Clone for ResponseFailedEventType
Source§fn clone(&self) -> ResponseFailedEventType
fn clone(&self) -> ResponseFailedEventType
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 ResponseFailedEventType
Source§impl Debug for ResponseFailedEventType
impl Debug for ResponseFailedEventType
Source§impl<'de> Deserialize<'de> for ResponseFailedEventType
impl<'de> Deserialize<'de> for ResponseFailedEventType
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 ResponseFailedEventType
impl Display for ResponseFailedEventType
impl Eq for ResponseFailedEventType
Source§impl FromStr for ResponseFailedEventType
impl FromStr for ResponseFailedEventType
Source§impl Hash for ResponseFailedEventType
impl Hash for ResponseFailedEventType
Source§impl Ord for ResponseFailedEventType
impl Ord for ResponseFailedEventType
Source§fn cmp(&self, other: &ResponseFailedEventType) -> Ordering
fn cmp(&self, other: &ResponseFailedEventType) -> 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 ResponseFailedEventType
impl PartialEq for ResponseFailedEventType
Source§impl PartialOrd for ResponseFailedEventType
impl PartialOrd for ResponseFailedEventType
Source§impl Serialize for ResponseFailedEventType
impl Serialize for ResponseFailedEventType
impl StructuralPartialEq for ResponseFailedEventType
Source§impl TryFrom<&String> for ResponseFailedEventType
impl TryFrom<&String> for ResponseFailedEventType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ResponseFailedEventType
impl TryFrom<&str> for ResponseFailedEventType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ResponseFailedEventType
impl TryFrom<String> for ResponseFailedEventType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ResponseFailedEventType
impl RefUnwindSafe for ResponseFailedEventType
impl Send for ResponseFailedEventType
impl Sync for ResponseFailedEventType
impl Unpin for ResponseFailedEventType
impl UnsafeUnpin for ResponseFailedEventType
impl UnwindSafe for ResponseFailedEventType
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