Struct tame_gcs::objects::ListResponse[][src]

pub struct ListResponse {
    pub objects: Vec<Metadata>,
    pub prefixes: Vec<String>,
    pub page_token: Option<String>,
}

Fields

objects: Vec<Metadata>

The list of objects matching the query

prefixes: Vec<String>

The list of prefixes of objects matching-but-not-listed up to and including the requested delimiter.

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 ApiResponse<&'_ [u8]> for ListResponse[src]

impl ApiResponse<Bytes> for ListResponse[src]

impl<B> TryFrom<Response<B>> for ListResponse where
    B: AsRef<[u8]>, 
[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for ListResponse

impl Send for ListResponse

impl Sync for ListResponse

impl Unpin for ListResponse

impl UnwindSafe for ListResponse

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> From<T> 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.