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>,
}Expand description
Response from Object::list.
Fields
kind: StringThe 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
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for ObjectListimpl Send for ObjectListimpl Sync for ObjectListimpl Unpin for ObjectListimpl UnwindSafe for ObjectList