Struct google_drive2::ParentReference[][src]

pub struct ParentReference {
    pub is_root: Option<bool>,
    pub kind: Option<String>,
    pub id: Option<String>,
    pub self_link: Option<String>,
    pub parent_link: Option<String>,
}

A reference to a file's parent.

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

Whether or not the parent is the root folder.

This is always drive#parentReference.

The ID of the parent.

A link back to this reference.

A link to the parent.

Trait Implementations

impl Default for ParentReference
[src]

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

impl Clone for ParentReference
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ParentReference
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ParentReference
[src]

impl ResponseResult for ParentReference
[src]

Auto Trait Implementations