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