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