pub struct Contact {
pub user: Arc<User>,
pub online: bool,
pub busy: bool,
}
Fields§
§user: Arc<User>
§online: bool
§busy: bool
Trait Implementations§
source§impl PartialEq<Contact> for Contact
impl PartialEq<Contact> for Contact
impl StructuralPartialEq for Contact
Auto Trait Implementations§
impl RefUnwindSafe for Contact
impl Send for Contact
impl Sync for Contact
impl Unpin for Contact
impl UnwindSafe for Contact
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