pub enum AvatarStatus {
Online,
Offline,
Busy,
Away,
}Expand description
Optional presence indicator drawn as a dot in the bottom-right corner.
Variants§
Trait Implementations§
Source§impl Clone for AvatarStatus
impl Clone for AvatarStatus
Source§fn clone(&self) -> AvatarStatus
fn clone(&self) -> AvatarStatus
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 AvatarStatus
impl Debug for AvatarStatus
Source§impl PartialEq for AvatarStatus
impl PartialEq for AvatarStatus
Source§fn eq(&self, other: &AvatarStatus) -> bool
fn eq(&self, other: &AvatarStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AvatarStatus
impl Eq for AvatarStatus
impl StructuralPartialEq for AvatarStatus
Auto Trait Implementations§
impl Freeze for AvatarStatus
impl RefUnwindSafe for AvatarStatus
impl Send for AvatarStatus
impl Sync for AvatarStatus
impl Unpin for AvatarStatus
impl UnsafeUnpin for AvatarStatus
impl UnwindSafe for AvatarStatus
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