Struct rusty_s3::actions::list_objects_v2::ListObjectsV2
source · [−]pub struct ListObjectsV2<'a> { /* private fields */ }Expand description
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
sourceimpl<'a> ListObjectsV2<'a>
impl<'a> ListObjectsV2<'a>
pub fn new(bucket: &'a Bucket, credentials: Option<&'a Credentials>) -> Self
pub fn parse_response(s: &str) -> Result<ListObjectsV2Response, DeError>
Trait Implementations
sourceimpl<'a> Clone for ListObjectsV2<'a>
impl<'a> Clone for ListObjectsV2<'a>
sourcefn clone(&self) -> ListObjectsV2<'a>
fn clone(&self) -> ListObjectsV2<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> Debug for ListObjectsV2<'a>
impl<'a> Debug for ListObjectsV2<'a>
sourceimpl<'a> S3Action<'a> for ListObjectsV2<'a>
impl<'a> S3Action<'a> for ListObjectsV2<'a>
const METHOD: Method = Method::Get
sourcefn query_mut(&mut self) -> &mut Map<'a>
fn query_mut(&mut self) -> &mut Map<'a>
Get a mutable reference to the query string of this action
sourcefn headers_mut(&mut self) -> &mut Map<'a>
fn headers_mut(&mut self) -> &mut Map<'a>
Get a mutable reference to the signed headers of this action Read more
sourcefn sign_with_time(&self, expires_in: Duration, time: &OffsetDateTime) -> Url
fn sign_with_time(&self, expires_in: Duration, time: &OffsetDateTime) -> Url
Takes the time at which the URL should be signed Used for testing purposes Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for ListObjectsV2<'a>
impl<'a> Send for ListObjectsV2<'a>
impl<'a> Sync for ListObjectsV2<'a>
impl<'a> Unpin for ListObjectsV2<'a>
impl<'a> UnwindSafe for ListObjectsV2<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more