Struct google_drive2::ChildReference[][src]

pub struct ChildReference {
    pub kind: Option<String>,
    pub child_link: Option<String>,
    pub id: Option<String>,
    pub self_link: Option<String>,
}

A reference to a folder's child.

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

This is always drive#childReference.

A link to the child.

The ID of the child.

A link back to this reference.

Trait Implementations

impl Default for ChildReference
[src]

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

impl Clone for ChildReference
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ChildReference
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ChildReference
[src]

impl ResponseResult for ChildReference
[src]

Auto Trait Implementations