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