Struct aws_sdk_workdocs::model::DocumentVersionMetadata
source · #[non_exhaustive]pub struct DocumentVersionMetadata { /* private fields */ }
Expand description
Describes a version of a document.
Implementations§
source§impl DocumentVersionMetadata
impl DocumentVersionMetadata
sourcepub fn content_type(&self) -> Option<&str>
pub fn content_type(&self) -> Option<&str>
The content type of the document.
sourcepub fn status(&self) -> Option<&DocumentStatusType>
pub fn status(&self) -> Option<&DocumentStatusType>
The status of the document.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The timestamp when the document was first uploaded.
sourcepub fn modified_timestamp(&self) -> Option<&DateTime>
pub fn modified_timestamp(&self) -> Option<&DateTime>
The timestamp when the document was last uploaded.
sourcepub fn content_created_timestamp(&self) -> Option<&DateTime>
pub fn content_created_timestamp(&self) -> Option<&DateTime>
The timestamp when the content of the document was originally created.
sourcepub fn content_modified_timestamp(&self) -> Option<&DateTime>
pub fn content_modified_timestamp(&self) -> Option<&DateTime>
The timestamp when the content of the document was modified.
sourcepub fn creator_id(&self) -> Option<&str>
pub fn creator_id(&self) -> Option<&str>
The ID of the creator.
source§impl DocumentVersionMetadata
impl DocumentVersionMetadata
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DocumentVersionMetadata
.
Trait Implementations§
source§impl Clone for DocumentVersionMetadata
impl Clone for DocumentVersionMetadata
source§fn clone(&self) -> DocumentVersionMetadata
fn clone(&self) -> DocumentVersionMetadata
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DocumentVersionMetadata
impl Debug for DocumentVersionMetadata
source§impl PartialEq<DocumentVersionMetadata> for DocumentVersionMetadata
impl PartialEq<DocumentVersionMetadata> for DocumentVersionMetadata
source§fn eq(&self, other: &DocumentVersionMetadata) -> bool
fn eq(&self, other: &DocumentVersionMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.