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