pub struct DiffFriend {
pub user_id: u64,
pub nickname: String,
pub user_type: i32,
pub user_category: i32,
pub status_message: String,
pub profile_image_url: String,
pub full_profile_image_url: String,
pub original_profile_image_url: String,
}
Fields§
§user_id: u64
§nickname: String
§user_type: i32
§user_category: i32
§status_message: String
§profile_image_url: String
§full_profile_image_url: String
§original_profile_image_url: String
Trait Implementations§
Source§impl Clone for DiffFriend
impl Clone for DiffFriend
Source§fn clone(&self) -> DiffFriend
fn clone(&self) -> DiffFriend
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 DiffFriend
impl Debug for DiffFriend
Source§impl<'de> Deserialize<'de> for DiffFriend
impl<'de> Deserialize<'de> for DiffFriend
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 DiffFriend
impl RefUnwindSafe for DiffFriend
impl Send for DiffFriend
impl Sync for DiffFriend
impl Unpin for DiffFriend
impl UnwindSafe for DiffFriend
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