pub struct PaginatedResponseComment {
pub total: Option<i64>,
pub max_results: Option<i32>,
pub start_at: Option<i64>,
pub results: Option<Vec<Comment>>,
}
Fields§
§total: Option<i64>
§max_results: Option<i32>
§start_at: Option<i64>
§results: Option<Vec<Comment>>
Implementations§
Source§impl PaginatedResponseComment
impl PaginatedResponseComment
pub fn new() -> PaginatedResponseComment
Trait Implementations§
Source§impl Clone for PaginatedResponseComment
impl Clone for PaginatedResponseComment
Source§fn clone(&self) -> PaginatedResponseComment
fn clone(&self) -> PaginatedResponseComment
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 PaginatedResponseComment
impl Debug for PaginatedResponseComment
Source§impl<'de> Deserialize<'de> for PaginatedResponseComment
impl<'de> Deserialize<'de> for PaginatedResponseComment
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 PaginatedResponseComment
impl PartialEq for PaginatedResponseComment
Source§impl Serialize for PaginatedResponseComment
impl Serialize for PaginatedResponseComment
impl StructuralPartialEq for PaginatedResponseComment
Auto Trait Implementations§
impl Freeze for PaginatedResponseComment
impl RefUnwindSafe for PaginatedResponseComment
impl Send for PaginatedResponseComment
impl Sync for PaginatedResponseComment
impl Unpin for PaginatedResponseComment
impl UnwindSafe for PaginatedResponseComment
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