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