pub enum ProfileStatus {
Active,
Trusted,
Blocked,
Muted,
Suspended,
Banned,
}Variants§
Trait Implementations§
Source§impl Clone for ProfileStatus
impl Clone for ProfileStatus
Source§fn clone(&self) -> ProfileStatus
fn clone(&self) -> ProfileStatus
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 ProfileStatus
impl Debug for ProfileStatus
Source§impl<'de> Deserialize<'de> for ProfileStatus
impl<'de> Deserialize<'de> for ProfileStatus
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
Source§impl Serialize for ProfileStatus
impl Serialize for ProfileStatus
impl Copy for ProfileStatus
Auto Trait Implementations§
impl Freeze for ProfileStatus
impl RefUnwindSafe for ProfileStatus
impl Send for ProfileStatus
impl Sync for ProfileStatus
impl Unpin for ProfileStatus
impl UnsafeUnpin for ProfileStatus
impl UnwindSafe for ProfileStatus
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