[][src]Struct google_driveactivity2::Drive

pub struct Drive {
    pub root: Option<DriveItem>,
    pub name: Option<String>,
    pub title: Option<String>,
}

Information about a shared drive.

This type is not used in any activity, and only used as part of another schema.

Fields

root: Option<DriveItem>

The root of this shared drive.

name: Option<String>

The resource name of the shared drive. The format is "COLLECTION_ID/DRIVE_ID". Clients should not assume a specific collection ID for this resource name.

title: Option<String>

The title of the shared drive.

Trait Implementations

impl Part for Drive[src]

impl Default for Drive[src]

impl Clone for Drive[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Drive[src]

impl Serialize for Drive[src]

impl<'de> Deserialize<'de> for Drive[src]

Auto Trait Implementations

impl Send for Drive

impl Unpin for Drive

impl Sync for Drive

impl UnwindSafe for Drive

impl RefUnwindSafe for Drive

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]