Struct aws_sdk_workdocs::model::DocumentVersionMetadata
source · [−]#[non_exhaustive]pub struct DocumentVersionMetadata { /* private fields */ }
Expand description
Describes a version of a document.
Implementations
sourceimpl 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.
sourceimpl DocumentVersionMetadata
impl DocumentVersionMetadata
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DocumentVersionMetadata
.
Trait Implementations
sourceimpl Clone for DocumentVersionMetadata
impl Clone for DocumentVersionMetadata
sourcefn clone(&self) -> DocumentVersionMetadata
fn clone(&self) -> DocumentVersionMetadata
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DocumentVersionMetadata
impl Debug for DocumentVersionMetadata
sourceimpl PartialEq<DocumentVersionMetadata> for DocumentVersionMetadata
impl PartialEq<DocumentVersionMetadata> for DocumentVersionMetadata
sourcefn eq(&self, other: &DocumentVersionMetadata) -> bool
fn eq(&self, other: &DocumentVersionMetadata) -> bool
impl StructuralPartialEq for DocumentVersionMetadata
Auto Trait Implementations
impl RefUnwindSafe for DocumentVersionMetadata
impl Send for DocumentVersionMetadata
impl Sync for DocumentVersionMetadata
impl Unpin for DocumentVersionMetadata
impl UnwindSafe for DocumentVersionMetadata
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more