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