Struct google_drive2::FileList [] [src]

pub struct FileList {
    pub next_page_token: Option<String>,
    pub kind: Option<String>,
    pub etag: Option<String>,
    pub items: Option<Vec<File>>,
    pub self_link: Option<String>,
    pub next_link: Option<String>,
}

A list of files.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The page token for the next page of files.

This is always drive#fileList.

The ETag of the list.

The actual list of files.

A link back to this list.

A link to the next page of files.

Trait Implementations

impl Debug for FileList
[src]

Formats the value using the given formatter.

impl Clone for FileList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for FileList
[src]

Returns the "default value" for a type. Read more

impl ResponseResult for FileList
[src]