Struct s3_batch_put_tar::ClientBuilder[][src]

pub struct ClientBuilder<Client: S3> { /* fields omitted */ }

Implementations

impl<Client: S3 + Send + 'static> ClientBuilder<Client>[src]

pub fn batch_duration(self, batch_duration: u64) -> Self[src]

pub fn bucket<S: ToString>(self, name: S) -> Self[src]

pub fn key_prefix<S: ToString>(self, prefix: S) -> Self[src]

pub fn s3_client(self, s3_client: Client) -> Self[src]

pub fn handle(self, rt: Handle) -> Self[src]

pub fn storage_class(self, storage_class: String) -> Self[src]

Optional S3 storage class to request when storing resulting tar files

pub fn build(self) -> Result<S3BatchPutClient, BuildError>[src]

Trait Implementations

impl<Client: S3> Default for ClientBuilder<Client>[src]

Auto Trait Implementations

impl<Client> !RefUnwindSafe for ClientBuilder<Client>

impl<Client> Send for ClientBuilder<Client> where
    Client: Send

impl<Client> Sync for ClientBuilder<Client> where
    Client: Sync

impl<Client> Unpin for ClientBuilder<Client> where
    Client: Unpin

impl<Client> !UnwindSafe for ClientBuilder<Client>

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> Instrument for T[src]

impl<T> Instrument 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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,