pub struct RealtimeServerEventInputAudioBufferCleared {
pub event_id: String,
pub type: String,
}
Expand description
Returned when the input audio buffer is cleared by the client with a
input_audio_buffer.clear
event.
Fields§
§event_id: String
The unique ID of the server event.
type: String
The event type, must be input_audio_buffer.cleared
.
Trait Implementations§
Source§impl Clone for RealtimeServerEventInputAudioBufferCleared
impl Clone for RealtimeServerEventInputAudioBufferCleared
Source§fn clone(&self) -> RealtimeServerEventInputAudioBufferCleared
fn clone(&self) -> RealtimeServerEventInputAudioBufferCleared
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 RealtimeServerEventInputAudioBufferCleared
impl Default for RealtimeServerEventInputAudioBufferCleared
Source§fn default() -> RealtimeServerEventInputAudioBufferCleared
fn default() -> RealtimeServerEventInputAudioBufferCleared
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RealtimeServerEventInputAudioBufferCleared
impl RefUnwindSafe for RealtimeServerEventInputAudioBufferCleared
impl Send for RealtimeServerEventInputAudioBufferCleared
impl Sync for RealtimeServerEventInputAudioBufferCleared
impl Unpin for RealtimeServerEventInputAudioBufferCleared
impl UnwindSafe for RealtimeServerEventInputAudioBufferCleared
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