pub struct FeedResponse {
pub posts: Vec<Post>,
pub following_count: i64,
pub total: i64,
pub limit: i64,
pub offset: i64,
pub has_more: bool,
pub hint: Option<String>,
}Fields§
§posts: Vec<Post>§following_count: i64§total: i64§limit: i64§offset: i64§has_more: bool§hint: Option<String>Trait Implementations§
Source§impl Clone for FeedResponse
impl Clone for FeedResponse
Source§fn clone(&self) -> FeedResponse
fn clone(&self) -> FeedResponse
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 FeedResponse
impl Debug for FeedResponse
Source§impl Default for FeedResponse
impl Default for FeedResponse
Source§fn default() -> FeedResponse
fn default() -> FeedResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FeedResponse
impl<'de> Deserialize<'de> for FeedResponse
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 FeedResponse
impl RefUnwindSafe for FeedResponse
impl Send for FeedResponse
impl Sync for FeedResponse
impl Unpin for FeedResponse
impl UnsafeUnpin for FeedResponse
impl UnwindSafe for FeedResponse
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