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