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