pub struct FetchRecordingParams {
pub account_sid: String,
pub sid: String,
pub include_soft_deleted: Option<bool>,
}
Expand description
struct for passing parameters to the method fetch_recording
Fields§
§account_sid: String
The SID of the Account that created the Recording resource to fetch.
sid: String
The Twilio-provided string that uniquely identifies the Recording resource to fetch.
include_soft_deleted: Option<bool>
A boolean parameter indicating whether to retrieve soft deleted recordings or not. Recordings metadata are kept after deletion for a retention period of 40 days.
Trait Implementations§
Source§impl Clone for FetchRecordingParams
impl Clone for FetchRecordingParams
Source§fn clone(&self) -> FetchRecordingParams
fn clone(&self) -> FetchRecordingParams
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 FetchRecordingParams
impl RefUnwindSafe for FetchRecordingParams
impl Send for FetchRecordingParams
impl Sync for FetchRecordingParams
impl Unpin for FetchRecordingParams
impl UnwindSafe for FetchRecordingParams
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