pub struct DeleteCommentRequest {
pub authentication_token: Option<String>,
pub comment_id: String,
pub document_id: String,
pub version_id: String,
}
Fields§
§authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.
comment_id: String
The ID of the comment.
document_id: String
The ID of the document.
version_id: String
The ID of the document version.
Trait Implementations§
Source§impl Clone for DeleteCommentRequest
impl Clone for DeleteCommentRequest
Source§fn clone(&self) -> DeleteCommentRequest
fn clone(&self) -> DeleteCommentRequest
Returns a duplicate 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 DeleteCommentRequest
impl Debug for DeleteCommentRequest
Source§impl Default for DeleteCommentRequest
impl Default for DeleteCommentRequest
Source§fn default() -> DeleteCommentRequest
fn default() -> DeleteCommentRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteCommentRequest
impl PartialEq for DeleteCommentRequest
Source§impl Serialize for DeleteCommentRequest
impl Serialize for DeleteCommentRequest
impl StructuralPartialEq for DeleteCommentRequest
Auto Trait Implementations§
impl Freeze for DeleteCommentRequest
impl RefUnwindSafe for DeleteCommentRequest
impl Send for DeleteCommentRequest
impl Sync for DeleteCommentRequest
impl Unpin for DeleteCommentRequest
impl UnwindSafe for DeleteCommentRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more