pub struct DeleteMediaParams {
pub account_sid: String,
pub message_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method delete_media
Fields§
§account_sid: String
The SID of the Account that is associated with the Media resource.
message_sid: String
The SID of the Message resource that is associated with the Media resource.
sid: String
The unique identifier of the to-be-deleted Media resource.
Trait Implementations§
Source§impl Clone for DeleteMediaParams
impl Clone for DeleteMediaParams
Source§fn clone(&self) -> DeleteMediaParams
fn clone(&self) -> DeleteMediaParams
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 DeleteMediaParams
impl RefUnwindSafe for DeleteMediaParams
impl Send for DeleteMediaParams
impl Sync for DeleteMediaParams
impl Unpin for DeleteMediaParams
impl UnwindSafe for DeleteMediaParams
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