[][src]Struct rusoto_workdocs::DocumentVersionMetadata

pub struct DocumentVersionMetadata {
    pub content_created_timestamp: Option<f64>,
    pub content_modified_timestamp: Option<f64>,
    pub content_type: Option<String>,
    pub created_timestamp: Option<f64>,
    pub creator_id: Option<String>,
    pub id: Option<String>,
    pub modified_timestamp: Option<f64>,
    pub name: Option<String>,
    pub signature: Option<String>,
    pub size: Option<i64>,
    pub source: Option<HashMap<String, String>>,
    pub status: Option<String>,
    pub thumbnail: Option<HashMap<String, String>>,
}

Describes a version of a document.

Fields

content_created_timestamp: Option<f64>

The timestamp when the content of the document was originally created.

content_modified_timestamp: Option<f64>

The timestamp when the content of the document was modified.

content_type: Option<String>

The content type of the document.

created_timestamp: Option<f64>

The timestamp when the document was first uploaded.

creator_id: Option<String>

The ID of the creator.

id: Option<String>

The ID of the version.

modified_timestamp: Option<f64>

The timestamp when the document was last uploaded.

name: Option<String>

The name of the version.

signature: Option<String>

The signature of the document.

size: Option<i64>

The size of the document, in bytes.

source: Option<HashMap<String, String>>

The source of the document.

status: Option<String>

The status of the document.

thumbnail: Option<HashMap<String, String>>

The thumbnail of the document.

Trait Implementations

impl Clone for DocumentVersionMetadata[src]

impl Debug for DocumentVersionMetadata[src]

impl Default for DocumentVersionMetadata[src]

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

impl PartialEq<DocumentVersionMetadata> for DocumentVersionMetadata[src]

impl StructuralPartialEq for DocumentVersionMetadata[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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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.