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