pub struct UpdateRealtimeTranscriptionParams {
pub account_sid: String,
pub call_sid: String,
pub sid: String,
pub status: String,
}
Expand description
struct for passing parameters to the method update_realtime_transcription
Fields§
§account_sid: String
The SID of the Account that created this Transcription resource.
call_sid: String
The SID of the Call the Transcription resource is associated with.
sid: String
The SID of the Transcription resource, or the name
used when creating the resource
status: String
Trait Implementations§
Source§impl Clone for UpdateRealtimeTranscriptionParams
impl Clone for UpdateRealtimeTranscriptionParams
Source§fn clone(&self) -> UpdateRealtimeTranscriptionParams
fn clone(&self) -> UpdateRealtimeTranscriptionParams
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 UpdateRealtimeTranscriptionParams
impl RefUnwindSafe for UpdateRealtimeTranscriptionParams
impl Send for UpdateRealtimeTranscriptionParams
impl Sync for UpdateRealtimeTranscriptionParams
impl Unpin for UpdateRealtimeTranscriptionParams
impl UnwindSafe for UpdateRealtimeTranscriptionParams
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