pub struct GetAllPosts {
pub posts: Vec<Post>,
pub total: u32,
pub skip: u32,
pub limit: u32,
}Fields§
§posts: Vec<Post>§total: u32§skip: u32§limit: u32Trait Implementations§
Source§impl Debug for GetAllPosts
impl Debug for GetAllPosts
Source§impl<'de> Deserialize<'de> for GetAllPosts
impl<'de> Deserialize<'de> for GetAllPosts
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 GetAllPosts
impl RefUnwindSafe for GetAllPosts
impl Send for GetAllPosts
impl Sync for GetAllPosts
impl Unpin for GetAllPosts
impl UnwindSafe for GetAllPosts
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