[][src]Struct dropbox_sdk::cloud_docs::GetMetadataResult

pub struct GetMetadataResult {
    pub file_id: String,
    pub title: String,
    pub mime_type: String,
    pub version: String,
    pub provider_version: String,
    pub user: Option<UserInfo>,
    pub is_deleted: bool,
    pub user_permissions: Option<UserPermissions>,
}

Fields

file_id: Stringtitle: String

Title of the Cloud Doc without extension.

mime_type: String

MIME type of the Cloud Doc.

version: String

Opaque string representing the version of the document stored in Dropbox (only set for Dropbox-stored Documents).

provider_version: String

Application specific string representing the revision of a document (only set for App-stored Documents).

user: Option<UserInfo>

User identified by the auth token.

is_deleted: bool

true if the document is deleted or purged.

user_permissions: Option<UserPermissions>

Actions that the user identified by the auth token can performn. This message will not be populated for deleted documents.

Trait Implementations

impl Debug for GetMetadataResult[src]

impl Default for GetMetadataResult[src]

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

impl Serialize for GetMetadataResult[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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> Typeable for T where
    T: Any