pub struct ListBucketsInput {
pub bucket_region: Option<String>,
pub continuation_token: Option<String>,
pub max_buckets: Option<i32>,
pub prefix: Option<String>,
}Expand description
S3 ListBucketsInput.
Fields§
§bucket_region: Option<String>HTTP query: bucket-region.
continuation_token: Option<String>HTTP query: continuation-token.
max_buckets: Option<i32>HTTP query: max-buckets.
prefix: Option<String>HTTP query: prefix.
Trait Implementations§
Source§impl Clone for ListBucketsInput
impl Clone for ListBucketsInput
Source§fn clone(&self) -> ListBucketsInput
fn clone(&self) -> ListBucketsInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListBucketsInput
impl Debug for ListBucketsInput
Source§impl Default for ListBucketsInput
impl Default for ListBucketsInput
Source§fn default() -> ListBucketsInput
fn default() -> ListBucketsInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListBucketsInput
impl RefUnwindSafe for ListBucketsInput
impl Send for ListBucketsInput
impl Sync for ListBucketsInput
impl Unpin for ListBucketsInput
impl UnsafeUnpin for ListBucketsInput
impl UnwindSafe for ListBucketsInput
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