pub struct RealtimeServerEventOutputAudioBufferStopped {
pub event_id: String,
pub type: String,
pub response_id: String,
}
Expand description
WebRTC Only: Emitted when the output audio buffer has been completely drained on the server, and no more audio is forthcoming.
Fields§
§event_id: String
The unique ID of the server event.
type: String
The event type, must be output_audio_buffer.stopped
.
response_id: String
The unique ID of the response that produced the audio.
Trait Implementations§
Source§impl Clone for RealtimeServerEventOutputAudioBufferStopped
impl Clone for RealtimeServerEventOutputAudioBufferStopped
Source§fn clone(&self) -> RealtimeServerEventOutputAudioBufferStopped
fn clone(&self) -> RealtimeServerEventOutputAudioBufferStopped
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 RealtimeServerEventOutputAudioBufferStopped
impl Default for RealtimeServerEventOutputAudioBufferStopped
Source§fn default() -> RealtimeServerEventOutputAudioBufferStopped
fn default() -> RealtimeServerEventOutputAudioBufferStopped
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RealtimeServerEventOutputAudioBufferStopped
impl RefUnwindSafe for RealtimeServerEventOutputAudioBufferStopped
impl Send for RealtimeServerEventOutputAudioBufferStopped
impl Sync for RealtimeServerEventOutputAudioBufferStopped
impl Unpin for RealtimeServerEventOutputAudioBufferStopped
impl UnwindSafe for RealtimeServerEventOutputAudioBufferStopped
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