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