[][src]Struct rusty_s3::actions::CreateMultipartUpload

pub struct CreateMultipartUpload<'a> { /* fields omitted */ }

Create a multipart upload.

A few advantages of multipart uploads are:

  • being able to be resume without having to start back from the beginning
  • parallelize the uploads across multiple threads

Find out more about CreateMultipartUpload from the AWS API Reference

Implementations

impl<'a> CreateMultipartUpload<'a>[src]

pub fn new(
    bucket: &'a Bucket,
    credentials: Option<&'a Credentials>,
    object: &'a str
) -> Self
[src]

pub fn parse_response(s: &str) -> Result<CreateMultipartUploadResponse, DeError>[src]

Trait Implementations

impl<'a> Clone for CreateMultipartUpload<'a>[src]

impl<'a> Debug for CreateMultipartUpload<'a>[src]

impl<'a> S3Action for CreateMultipartUpload<'a>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.