pub struct RealtimeServerEventOutputAudioBufferStarted {
pub event_id: String,
pub type: String,
pub response_id: String,
}
Expand description
WebRTC Only: Emitted when the server begins streaming audio to the client.
Fields§
§event_id: String
The unique ID of the server event.
type: String
The event type, must be output_audio_buffer.started
.
response_id: String
The unique ID of the response that produced the audio.
Trait Implementations§
Source§impl Clone for RealtimeServerEventOutputAudioBufferStarted
impl Clone for RealtimeServerEventOutputAudioBufferStarted
Source§fn clone(&self) -> RealtimeServerEventOutputAudioBufferStarted
fn clone(&self) -> RealtimeServerEventOutputAudioBufferStarted
Returns a copy 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 Default for RealtimeServerEventOutputAudioBufferStarted
impl Default for RealtimeServerEventOutputAudioBufferStarted
Source§fn default() -> RealtimeServerEventOutputAudioBufferStarted
fn default() -> RealtimeServerEventOutputAudioBufferStarted
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RealtimeServerEventOutputAudioBufferStarted
impl RefUnwindSafe for RealtimeServerEventOutputAudioBufferStarted
impl Send for RealtimeServerEventOutputAudioBufferStarted
impl Sync for RealtimeServerEventOutputAudioBufferStarted
impl Unpin for RealtimeServerEventOutputAudioBufferStarted
impl UnwindSafe for RealtimeServerEventOutputAudioBufferStarted
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