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