pub struct PutAppendBlobBuilder { /* private fields */ }
Implementations§
Source§impl PutAppendBlobBuilder
impl PutAppendBlobBuilder
Setters for the various options for this builder
pub fn content_type<P: Into<BlobContentType>>(self, content_type: P) -> Self
pub fn content_encoding<P: Into<BlobContentEncoding>>( self, content_encoding: P, ) -> Self
pub fn content_language<P: Into<BlobContentLanguage>>( self, content_language: P, ) -> Self
pub fn content_disposition<P: Into<BlobContentDisposition>>( self, content_disposition: P, ) -> Self
pub fn metadata<P: Into<Metadata>>(self, metadata: 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 PutAppendBlobBuilder
impl PutAppendBlobBuilder
pub fn into_future(self) -> PutAppendBlob
Trait Implementations§
Source§impl Clone for PutAppendBlobBuilder
impl Clone for PutAppendBlobBuilder
Source§fn clone(&self) -> PutAppendBlobBuilder
fn clone(&self) -> PutAppendBlobBuilder
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 Debug for PutAppendBlobBuilder
impl Debug for PutAppendBlobBuilder
Source§impl IntoFuture for PutAppendBlobBuilder
impl IntoFuture for PutAppendBlobBuilder
Source§type IntoFuture = Pin<Box<dyn Future<Output = Result<PutBlobResponse, Error>> + Send>>
type IntoFuture = Pin<Box<dyn Future<Output = Result<PutBlobResponse, Error>> + Send>>
Which kind of future are we turning this into?
Source§type Output = <Pin<Box<dyn Future<Output = Result<PutBlobResponse, Error>> + Send>> as Future>::Output
type Output = <Pin<Box<dyn Future<Output = Result<PutBlobResponse, 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 PutAppendBlobBuilder
impl !RefUnwindSafe for PutAppendBlobBuilder
impl Send for PutAppendBlobBuilder
impl Sync for PutAppendBlobBuilder
impl Unpin for PutAppendBlobBuilder
impl !UnwindSafe for PutAppendBlobBuilder
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