pub struct ListBucketInventoryConfigurationsRequest {
pub bucket: String,
pub continuation_token: Option<String>,
}Fields§
§bucket: StringThe name of the bucket containing the inventory configurations to retrieve.
continuation_token: Option<String>The marker used to continue an inventory configuration listing that has been truncated. Use the NextContinuationToken from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.
Trait Implementations§
Source§impl Clone for ListBucketInventoryConfigurationsRequest
impl Clone for ListBucketInventoryConfigurationsRequest
Source§fn clone(&self) -> ListBucketInventoryConfigurationsRequest
fn clone(&self) -> ListBucketInventoryConfigurationsRequest
Returns a duplicate 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 Default for ListBucketInventoryConfigurationsRequest
impl Default for ListBucketInventoryConfigurationsRequest
Source§fn default() -> ListBucketInventoryConfigurationsRequest
fn default() -> ListBucketInventoryConfigurationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListBucketInventoryConfigurationsRequest
impl PartialEq for ListBucketInventoryConfigurationsRequest
Source§fn eq(&self, other: &ListBucketInventoryConfigurationsRequest) -> bool
fn eq(&self, other: &ListBucketInventoryConfigurationsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListBucketInventoryConfigurationsRequest
Auto Trait Implementations§
impl Freeze for ListBucketInventoryConfigurationsRequest
impl RefUnwindSafe for ListBucketInventoryConfigurationsRequest
impl Send for ListBucketInventoryConfigurationsRequest
impl Sync for ListBucketInventoryConfigurationsRequest
impl Unpin for ListBucketInventoryConfigurationsRequest
impl UnwindSafe for ListBucketInventoryConfigurationsRequest
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