pub struct FollowingStatus {
pub id: u64,
pub is_following: bool,
pub is_followed: bool,
}Fields§
§id: u64§is_following: bool§is_followed: boolTrait Implementations§
Source§impl Clone for FollowingStatus
impl Clone for FollowingStatus
Source§fn clone(&self) -> FollowingStatus
fn clone(&self) -> FollowingStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FollowingStatus
impl Debug for FollowingStatus
Source§impl<'de> Deserialize<'de> for FollowingStatus
impl<'de> Deserialize<'de> for FollowingStatus
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
impl Eq for FollowingStatus
Source§impl PartialEq for FollowingStatus
impl PartialEq for FollowingStatus
Source§fn eq(&self, other: &FollowingStatus) -> bool
fn eq(&self, other: &FollowingStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FollowingStatus
impl Serialize for FollowingStatus
impl StructuralPartialEq for FollowingStatus
Auto Trait Implementations§
impl Freeze for FollowingStatus
impl RefUnwindSafe for FollowingStatus
impl Send for FollowingStatus
impl Sync for FollowingStatus
impl Unpin for FollowingStatus
impl UnsafeUnpin for FollowingStatus
impl UnwindSafe for FollowingStatus
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