Struct cloud_storage::object::ObjectList[][src]

pub struct ObjectList {
    pub kind: String,
    pub items: Vec<Object>,
    pub prefixes: Vec<String>,
    pub next_page_token: Option<String>,
}

Response from Object::list.

Fields

kind: String

The kind of item this is. For lists of objects, this is always storage#objects.

items: Vec<Object>

The list of objects, ordered lexicographically by name.

prefixes: Vec<String>

Object name prefixes for objects that matched the listing request but were excluded from items because of a delimiter. Values in this list are object names up to and including the requested delimiter. Duplicate entries are omitted from this list.

next_page_token: Option<String>

The continuation token, included only if there are more items to return. Provide this value as the page_token of a subsequent request in order to return the next page of results.

Trait Implementations

impl Debug for ObjectList[src]

impl Default for ObjectList[src]

impl<'de> Deserialize<'de> for ObjectList[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.