pub struct UserFollowingResponse {
pub user_previews: Vec<UserPreview>,
pub next_url: Option<String>,
}Expand description
User following response
Fields§
§user_previews: Vec<UserPreview>User preview list
next_url: Option<String>Next page URL
Trait Implementations§
Source§impl Clone for UserFollowingResponse
impl Clone for UserFollowingResponse
Source§fn clone(&self) -> UserFollowingResponse
fn clone(&self) -> UserFollowingResponse
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 UserFollowingResponse
impl Debug for UserFollowingResponse
Source§impl<'de> Deserialize<'de> for UserFollowingResponse
impl<'de> Deserialize<'de> for UserFollowingResponse
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 UserFollowingResponse
impl RefUnwindSafe for UserFollowingResponse
impl Send for UserFollowingResponse
impl Sync for UserFollowingResponse
impl Unpin for UserFollowingResponse
impl UnwindSafe for UserFollowingResponse
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