Struct google_cloud_storage::http::buckets::list::ListBucketsResponse
source · pub struct ListBucketsResponse {
pub items: Vec<Bucket>,
pub next_page_token: Option<String>,
}Expand description
The result of a call to Buckets.ListBuckets
Fields§
§items: Vec<Bucket>The list of items.
next_page_token: Option<String>The continuation token, used to page through large result sets. Provide this value in a subsequent request to return the next page of results.
Trait Implementations§
source§impl Clone for ListBucketsResponse
impl Clone for ListBucketsResponse
source§fn clone(&self) -> ListBucketsResponse
fn clone(&self) -> ListBucketsResponse
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 moresource§impl Debug for ListBucketsResponse
impl Debug for ListBucketsResponse
source§impl<'de> Deserialize<'de> for ListBucketsResponse
impl<'de> Deserialize<'de> for ListBucketsResponse
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
source§impl PartialEq<ListBucketsResponse> for ListBucketsResponse
impl PartialEq<ListBucketsResponse> for ListBucketsResponse
source§fn eq(&self, other: &ListBucketsResponse) -> bool
fn eq(&self, other: &ListBucketsResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ListBucketsResponse
impl Serialize for ListBucketsResponse
impl Eq for ListBucketsResponse
impl StructuralEq for ListBucketsResponse
impl StructuralPartialEq for ListBucketsResponse
Auto Trait Implementations§
impl RefUnwindSafe for ListBucketsResponse
impl Send for ListBucketsResponse
impl Sync for ListBucketsResponse
impl Unpin for ListBucketsResponse
impl UnwindSafe for ListBucketsResponse
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.