pub struct GetFileBuilder { /* private fields */ }Implementations§
Source§impl GetFileBuilder
Setters for the various options for this builder
impl GetFileBuilder
Setters for the various options for this builder
pub fn range<P: Into<Range>>(self, range: P) -> Self
pub fn if_match_condition<P: Into<IfMatchCondition>>( self, if_match_condition: P, ) -> Self
pub fn if_modified_since<P: Into<IfModifiedSince>>( self, if_modified_since: P, ) -> Self
pub fn lease_id<P: Into<LeaseId>>(self, lease_id: P) -> Self
pub fn context<P: Into<Context>>(self, context: P) -> Self
Source§impl GetFileBuilder
impl GetFileBuilder
pub fn into_future(self) -> GetFile
Trait Implementations§
Source§impl Clone for GetFileBuilder
impl Clone for GetFileBuilder
Source§fn clone(&self) -> GetFileBuilder
fn clone(&self) -> GetFileBuilder
Returns a duplicate 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 Debug for GetFileBuilder
impl Debug for GetFileBuilder
Source§impl IntoFuture for GetFileBuilder
impl IntoFuture for GetFileBuilder
Source§type IntoFuture = Pin<Box<dyn Future<Output = Result<GetFileResponse, Error>> + Send>>
type IntoFuture = Pin<Box<dyn Future<Output = Result<GetFileResponse, Error>> + Send>>
Which kind of future are we turning this into?
Source§type Output = <Pin<Box<dyn Future<Output = Result<GetFileResponse, Error>> + Send>> as Future>::Output
type Output = <Pin<Box<dyn Future<Output = Result<GetFileResponse, Error>> + Send>> as Future>::Output
The output that the future will produce on completion.
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl Freeze for GetFileBuilder
impl !RefUnwindSafe for GetFileBuilder
impl Send for GetFileBuilder
impl Sync for GetFileBuilder
impl Unpin for GetFileBuilder
impl !UnwindSafe for GetFileBuilder
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