Struct aws_sdk_workdocs::model::CommentMetadata [−][src]
#[non_exhaustive]pub struct CommentMetadata {
pub comment_id: Option<String>,
pub contributor: Option<User>,
pub created_timestamp: Option<DateTime>,
pub comment_status: Option<CommentStatusType>,
pub recipient_id: Option<String>,
}
Expand description
Describes the metadata of a comment.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.comment_id: Option<String>
The ID of the comment.
contributor: Option<User>
The user who made the comment.
created_timestamp: Option<DateTime>
The timestamp that the comment was created.
comment_status: Option<CommentStatusType>
The status of the comment.
recipient_id: Option<String>
The ID of the user being replied to.
Implementations
The ID of the comment.
The user who made the comment.
The timestamp that the comment was created.
The status of the comment.
The ID of the user being replied to.
Creates a new builder-style object to manufacture CommentMetadata
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CommentMetadata
impl Send for CommentMetadata
impl Sync for CommentMetadata
impl Unpin for CommentMetadata
impl UnwindSafe for CommentMetadata
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more