Struct azure_devops_rust_api::wiki::models::CommentList
source · pub struct CommentList {
pub comment_resource_reference: CommentResourceReference,
pub comments: Vec<Comment>,
pub continuation_token: Option<String>,
pub count: Option<i32>,
pub next_page: Option<String>,
pub total_count: Option<i32>,
}
Expand description
Represents a list of comments.
Fields§
§comment_resource_reference: CommentResourceReference
§comments: Vec<Comment>
List of comments in the current batch.
continuation_token: Option<String>
A string token that can be used to retrieving next page of comments if available. Otherwise null.
count: Option<i32>
The count of comments in the current batch.
next_page: Option<String>
Uri to the next page of comments if it is available. Otherwise null.
total_count: Option<i32>
Total count of comments on a work item.
Implementations§
source§impl CommentList
impl CommentList
Trait Implementations§
source§impl Clone for CommentList
impl Clone for CommentList
source§fn clone(&self) -> CommentList
fn clone(&self) -> CommentList
Returns a copy 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 CommentList
impl Debug for CommentList
source§impl Default for CommentList
impl Default for CommentList
source§fn default() -> CommentList
fn default() -> CommentList
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CommentList
impl<'de> Deserialize<'de> for CommentList
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 CommentList
impl PartialEq for CommentList
source§fn eq(&self, other: &CommentList) -> bool
fn eq(&self, other: &CommentList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CommentList
impl Serialize for CommentList
impl StructuralPartialEq for CommentList
Auto Trait Implementations§
impl Freeze for CommentList
impl RefUnwindSafe for CommentList
impl Send for CommentList
impl Sync for CommentList
impl Unpin for CommentList
impl UnwindSafe for CommentList
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