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