pub struct WallPosts {
pub posts: Vec<WallPost>,
pub next_cursor: Option<String>,
pub previous_cursor: Option<String>,
}Fields§
§posts: Vec<WallPost>§next_cursor: Option<String>§previous_cursor: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for WallPosts
impl<'de> Deserialize<'de> for WallPosts
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
impl Eq for WallPosts
impl StructuralPartialEq for WallPosts
Auto Trait Implementations§
impl Freeze for WallPosts
impl RefUnwindSafe for WallPosts
impl Send for WallPosts
impl Sync for WallPosts
impl Unpin for WallPosts
impl UnsafeUnpin for WallPosts
impl UnwindSafe for WallPosts
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