pub struct FriendsDiff {
pub total_count: u32,
pub deleted_ids: Vec<u64>,
pub added_friends: Vec<DiffFriend>,
}
Fields§
§total_count: u32
§deleted_ids: Vec<u64>
§added_friends: Vec<DiffFriend>
Implementations§
Trait Implementations§
Source§impl Clone for FriendsDiff
impl Clone for FriendsDiff
Source§fn clone(&self) -> FriendsDiff
fn clone(&self) -> FriendsDiff
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 FriendsDiff
impl Debug for FriendsDiff
Source§impl<'de> Deserialize<'de> for FriendsDiff
impl<'de> Deserialize<'de> for FriendsDiff
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 FriendsDiff
impl RefUnwindSafe for FriendsDiff
impl Send for FriendsDiff
impl Sync for FriendsDiff
impl Unpin for FriendsDiff
impl UnwindSafe for FriendsDiff
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