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, owner: Owner, 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 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 Debug for ListBuckets
impl Debug for ListBuckets
Source§impl<'de> Deserialize<'de> for ListBuckets
impl<'de> Deserialize<'de> for ListBuckets
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto 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