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