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