pub struct Comment {
pub anchor: Option<String>,
pub author: Option<User>,
pub content: Option<String>,
pub created_time: Option<String>,
pub deleted: Option<bool>,
pub html_content: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub modified_time: Option<String>,
pub quoted_file_content: Option<CommentQuotedFileContent>,
pub replies: Option<Vec<Reply>>,
pub resolved: Option<bool>,
}Expand description
A comment on a file.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- create comments (request|response)
- delete comments (none)
- get comments (response)
- list comments (none)
- update comments (request|response)
Fields§
§anchor: Option<String>A region of the document represented as a JSON string. For details on defining anchor properties, refer to Add comments and replies.
The author of the comment. The author’s email address and permission ID will not be populated.
content: Option<String>The plain text content of the comment. This field is used for setting the content, while htmlContent should be displayed.
created_time: Option<String>The time at which the comment was created (RFC 3339 date-time).
deleted: Option<bool>Whether the comment has been deleted. A deleted comment has no content.
html_content: Option<String>The content of the comment with HTML formatting.
id: Option<String>The ID of the comment.
kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “drive#comment”.
modified_time: Option<String>The last time the comment or any of its replies was modified (RFC 3339 date-time).
quoted_file_content: Option<CommentQuotedFileContent>The file content to which the comment refers, typically within the anchor region. For a text file, for example, this would be the text at the location of the comment.
replies: Option<Vec<Reply>>The full list of replies to the comment in chronological order.
resolved: Option<bool>Whether the comment has been resolved by one of its replies.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Comment
impl<'de> Deserialize<'de> for Comment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for Comment
impl Resource for Comment
impl ResponseResult for Comment
Auto Trait Implementations§
impl Freeze for Comment
impl RefUnwindSafe for Comment
impl Send for Comment
impl Sync for Comment
impl Unpin for Comment
impl UnwindSafe for Comment
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more