pub struct RealtimeServerEventTranscriptionSessionUpdated {
pub event_id: String,
pub type: String,
pub session: RealtimeTranscriptionSessionCreateResponse,
}
Expand description
Returned when a transcription session is updated with a
transcription_session.update
event, unless there is an error.
Fields§
§event_id: String
The unique ID of the server event.
type: String
The event type, must be transcription_session.updated
.
session: RealtimeTranscriptionSessionCreateResponse
Trait Implementations§
Source§impl Clone for RealtimeServerEventTranscriptionSessionUpdated
impl Clone for RealtimeServerEventTranscriptionSessionUpdated
Source§fn clone(&self) -> RealtimeServerEventTranscriptionSessionUpdated
fn clone(&self) -> RealtimeServerEventTranscriptionSessionUpdated
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 moreAuto Trait Implementations§
impl Freeze for RealtimeServerEventTranscriptionSessionUpdated
impl RefUnwindSafe for RealtimeServerEventTranscriptionSessionUpdated
impl Send for RealtimeServerEventTranscriptionSessionUpdated
impl Sync for RealtimeServerEventTranscriptionSessionUpdated
impl Unpin for RealtimeServerEventTranscriptionSessionUpdated
impl UnwindSafe for RealtimeServerEventTranscriptionSessionUpdated
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