pub struct DescribeCommentsResponse {
pub comments: Option<Vec<Comment>>,
pub marker: Option<String>,
}
Fields§
§comments: Option<Vec<Comment>>
The list of comments for the specified document version.
marker: Option<String>
The marker for the next set of results. This marker was received from a previous call.
Trait Implementations§
Source§impl Clone for DescribeCommentsResponse
impl Clone for DescribeCommentsResponse
Source§fn clone(&self) -> DescribeCommentsResponse
fn clone(&self) -> DescribeCommentsResponse
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 DescribeCommentsResponse
impl Debug for DescribeCommentsResponse
Source§impl Default for DescribeCommentsResponse
impl Default for DescribeCommentsResponse
Source§fn default() -> DescribeCommentsResponse
fn default() -> DescribeCommentsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeCommentsResponse
impl<'de> Deserialize<'de> for DescribeCommentsResponse
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeCommentsResponse
impl PartialEq for DescribeCommentsResponse
impl StructuralPartialEq for DescribeCommentsResponse
Auto Trait Implementations§
impl Freeze for DescribeCommentsResponse
impl RefUnwindSafe for DescribeCommentsResponse
impl Send for DescribeCommentsResponse
impl Sync for DescribeCommentsResponse
impl Unpin for DescribeCommentsResponse
impl UnwindSafe for DescribeCommentsResponse
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