pub struct GetFeedPostsResponse {
pub status: ApiStatus,
pub feed_posts: Vec<FeedPost>,
}Fields§
§status: ApiStatus§feed_posts: Vec<FeedPost>Implementations§
Trait Implementations§
Source§impl Clone for GetFeedPostsResponse
impl Clone for GetFeedPostsResponse
Source§fn clone(&self) -> GetFeedPostsResponse
fn clone(&self) -> GetFeedPostsResponse
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 GetFeedPostsResponse
impl Debug for GetFeedPostsResponse
Source§impl Default for GetFeedPostsResponse
impl Default for GetFeedPostsResponse
Source§fn default() -> GetFeedPostsResponse
fn default() -> GetFeedPostsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetFeedPostsResponse
impl<'de> Deserialize<'de> for GetFeedPostsResponse
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 GetFeedPostsResponse
impl PartialEq for GetFeedPostsResponse
Source§impl Serialize for GetFeedPostsResponse
impl Serialize for GetFeedPostsResponse
impl StructuralPartialEq for GetFeedPostsResponse
Auto Trait Implementations§
impl Freeze for GetFeedPostsResponse
impl RefUnwindSafe for GetFeedPostsResponse
impl Send for GetFeedPostsResponse
impl Sync for GetFeedPostsResponse
impl Unpin for GetFeedPostsResponse
impl UnwindSafe for GetFeedPostsResponse
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