[][src]Struct graph_rs_types::entitytypes::DriveItem

pub struct DriveItem {
    pub audio: Audio,
    pub content: Vec<u8>,
    pub c_tag: String,
    pub deleted: Deleted,
    pub file: File,
    pub file_system_info: FileSystemInfo,
    pub folder: Folder,
    pub image: Image,
    pub location: GeoCoordinates,
    pub package: Package,
    pub photo: Photo,
    pub publication: PublicationFacet,
    pub remote_item: RemoteItem,
    pub root: Root,
    pub search_result: SearchResult,
    pub shared: Shared,
    pub sharepoint_ids: SharepointIds,
    pub size: i64,
    pub special_folder: SpecialFolder,
    pub video: Video,
    pub web_dav_url: String,
    pub analytics: ItemAnalytics,
    pub children: Vec<DriveItem>,
    pub list_item: Box<ListItem>,
    pub permissions: Vec<Permission>,
    pub subscriptions: Vec<Subscription>,
    pub thumbnails: Vec<ThumbnailSet>,
    pub versions: Vec<DriveItemVersion>,
    pub workbook: Workbook,
    pub changed: bool,
    pub conflict_behavior: String,
    pub download_url: String,
    pub shared_changed: bool,
    pub source_url: String,
}

Fields

audio: Audiocontent: Vec<u8>c_tag: Stringdeleted: Deletedfile: Filefile_system_info: FileSystemInfofolder: Folderimage: Imagelocation: GeoCoordinatespackage: Packagephoto: Photopublication: PublicationFacetremote_item: RemoteItemroot: Rootsearch_result: SearchResultshared: Sharedsharepoint_ids: SharepointIdssize: i64special_folder: SpecialFoldervideo: Videoweb_dav_url: Stringanalytics: ItemAnalyticschildren: Vec<DriveItem>list_item: Box<ListItem>permissions: Vec<Permission>subscriptions: Vec<Subscription>thumbnails: Vec<ThumbnailSet>versions: Vec<DriveItemVersion>workbook: Workbookchanged: boolconflict_behavior: Stringdownload_url: Stringshared_changed: boolsource_url: String

Trait Implementations

impl Eq for DriveItem[src]

impl Clone for DriveItem[src]

impl PartialEq<DriveItem> for DriveItem[src]

impl Debug for DriveItem[src]

impl Serialize for DriveItem[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]