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