pub struct RealtimeClientEventTranscriptionSessionUpdate {
pub event_id: Option<String>,
pub type: String,
pub session: RealtimeTranscriptionSessionCreateRequest,
}
Expand description
Send this event to update a transcription session.
Fields§
§event_id: Option<String>
Optional client-generated ID used to identify this event.
type: String
The event type, must be transcription_session.update
.
session: RealtimeTranscriptionSessionCreateRequest
Trait Implementations§
Source§impl Clone for RealtimeClientEventTranscriptionSessionUpdate
impl Clone for RealtimeClientEventTranscriptionSessionUpdate
Source§fn clone(&self) -> RealtimeClientEventTranscriptionSessionUpdate
fn clone(&self) -> RealtimeClientEventTranscriptionSessionUpdate
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 moreAuto Trait Implementations§
impl Freeze for RealtimeClientEventTranscriptionSessionUpdate
impl RefUnwindSafe for RealtimeClientEventTranscriptionSessionUpdate
impl Send for RealtimeClientEventTranscriptionSessionUpdate
impl Sync for RealtimeClientEventTranscriptionSessionUpdate
impl Unpin for RealtimeClientEventTranscriptionSessionUpdate
impl UnwindSafe for RealtimeClientEventTranscriptionSessionUpdate
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