Struct google_drive2::PropertyList[][src]

pub struct PropertyList {
    pub items: Option<Vec<Property>>,
    pub kind: Option<String>,
    pub etag: Option<String>,
    pub self_link: Option<String>,
}

A collection of properties, key-value pairs that are either public or private to an application.

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 list of properties.

This is always drive#propertyList.

The ETag of the list.

The link back to this list.

Trait Implementations

impl Default for PropertyList
[src]

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

impl Clone for PropertyList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PropertyList
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for PropertyList
[src]

Auto Trait Implementations