[][src]Struct rusty_s3::actions::list_objects_v2::ListObjectsV2

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

List all objects in the bucket.

If next_continuation_token is Some the response is truncated, and the rest of the list can be retrieved by reusing the ListObjectV2 action but with continuation-token set to the value of next_continuation_token received in the previous response.

Find out more about ListObjectsV2 from the AWS API Reference

Implementations

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

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

pub fn query_mut(&mut self) -> &mut Map<'a>[src]

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

Trait Implementations

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for ListObjectsV2<'a>[src]

impl<'a> Send for ListObjectsV2<'a>[src]

impl<'a> Sync for ListObjectsV2<'a>[src]

impl<'a> Unpin for ListObjectsV2<'a>[src]

impl<'a> UnwindSafe for ListObjectsV2<'a>[src]

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.