pub struct ListBuckets { /* private fields */ }
Implementations§
Source§impl ListBuckets
impl ListBuckets
pub fn new( prefix: String, marker: String, max_keys: String, is_truncated: bool, next_marker: String, id: String, display_name: String, buckets: Vec<Bucket>, ) -> Self
pub fn prefix(&self) -> &str
pub fn marker(&self) -> &str
pub fn max_keys(&self) -> &str
pub fn is_truncated(&self) -> bool
pub fn next_marker(&self) -> &str
pub fn id(&self) -> &str
pub fn display_name(&self) -> &str
pub fn buckets(&self) -> &Vec<Bucket>
Trait Implementations§
Source§impl Clone for ListBuckets
impl Clone for ListBuckets
Source§fn clone(&self) -> ListBuckets
fn clone(&self) -> ListBuckets
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for ListBuckets
impl RefUnwindSafe for ListBuckets
impl Send for ListBuckets
impl Sync for ListBuckets
impl Unpin for ListBuckets
impl UnwindSafe for ListBuckets
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