pub struct GetAllComments {
pub comments: Vec<Comment>,
pub total: u32,
pub skip: u32,
pub limit: u32,
}Fields§
§comments: Vec<Comment>§total: u32§skip: u32§limit: u32Trait Implementations§
Source§impl Debug for GetAllComments
impl Debug for GetAllComments
Source§impl<'de> Deserialize<'de> for GetAllComments
impl<'de> Deserialize<'de> for GetAllComments
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
Auto Trait Implementations§
impl Freeze for GetAllComments
impl RefUnwindSafe for GetAllComments
impl Send for GetAllComments
impl Sync for GetAllComments
impl Unpin for GetAllComments
impl UnwindSafe for GetAllComments
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