Struct twilio::request::fetch_recording::FetchRecordingRequest
source · pub struct FetchRecordingRequest<'a> {
pub account_sid: String,
pub include_soft_deleted: Option<bool>,
pub sid: String,
/* private fields */
}Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§account_sid: String§include_soft_deleted: Option<bool>§sid: StringImplementations§
source§impl<'a> FetchRecordingRequest<'a>
impl<'a> FetchRecordingRequest<'a>
pub async fn send(self) -> InMemoryResult<ApiV2010AccountRecording>
pub fn include_soft_deleted(self, include_soft_deleted: bool) -> Self
Trait Implementations§
source§impl<'a> Clone for FetchRecordingRequest<'a>
impl<'a> Clone for FetchRecordingRequest<'a>
source§fn clone(&self) -> FetchRecordingRequest<'a>
fn clone(&self) -> FetchRecordingRequest<'a>
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 moresource§impl<'a> IntoFuture for FetchRecordingRequest<'a>
impl<'a> IntoFuture for FetchRecordingRequest<'a>
§type Output = Result<ApiV2010AccountRecording, Error<InMemoryBody>>
type Output = Result<ApiV2010AccountRecording, Error<InMemoryBody>>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = <FetchRecordingRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = <FetchRecordingRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more