pub struct DeleteRecordingTranscriptionParams {
pub account_sid: String,
pub recording_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method delete_recording_transcription
Fields§
§account_sid: String
The SID of the Account that created the Transcription resources to delete.
recording_sid: String
The SID of the Recording that created the transcription to delete.
sid: String
The Twilio-provided string that uniquely identifies the Transcription resource to delete.
Trait Implementations§
Source§impl Clone for DeleteRecordingTranscriptionParams
impl Clone for DeleteRecordingTranscriptionParams
Source§fn clone(&self) -> DeleteRecordingTranscriptionParams
fn clone(&self) -> DeleteRecordingTranscriptionParams
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 DeleteRecordingTranscriptionParams
impl RefUnwindSafe for DeleteRecordingTranscriptionParams
impl Send for DeleteRecordingTranscriptionParams
impl Sync for DeleteRecordingTranscriptionParams
impl Unpin for DeleteRecordingTranscriptionParams
impl UnwindSafe for DeleteRecordingTranscriptionParams
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