pub struct SpeechAudioDeltaEvent {
pub audio: String,
}Fields§
§audio: StringA chunk of Base64-encoded audio data.
Trait Implementations§
Source§impl Clone for SpeechAudioDeltaEvent
impl Clone for SpeechAudioDeltaEvent
Source§fn clone(&self) -> SpeechAudioDeltaEvent
fn clone(&self) -> SpeechAudioDeltaEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SpeechAudioDeltaEvent
impl Debug for SpeechAudioDeltaEvent
Source§impl<'de> Deserialize<'de> for SpeechAudioDeltaEvent
impl<'de> Deserialize<'de> for SpeechAudioDeltaEvent
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 EventType for SpeechAudioDeltaEvent
impl EventType for SpeechAudioDeltaEvent
Source§fn event_type(&self) -> &'static str
fn event_type(&self) -> &'static str
Returns the event type string (e.g., “batch.cancelled”)
Source§impl PartialEq for SpeechAudioDeltaEvent
impl PartialEq for SpeechAudioDeltaEvent
Source§impl Serialize for SpeechAudioDeltaEvent
impl Serialize for SpeechAudioDeltaEvent
impl StructuralPartialEq for SpeechAudioDeltaEvent
Auto Trait Implementations§
impl Freeze for SpeechAudioDeltaEvent
impl RefUnwindSafe for SpeechAudioDeltaEvent
impl Send for SpeechAudioDeltaEvent
impl Sync for SpeechAudioDeltaEvent
impl Unpin for SpeechAudioDeltaEvent
impl UnwindSafe for SpeechAudioDeltaEvent
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