pub enum UserOrigin {
Local,
Remote,
Combined,
}Variants§
Trait Implementations§
Source§impl Clone for UserOrigin
impl Clone for UserOrigin
Source§fn clone(&self) -> UserOrigin
fn clone(&self) -> UserOrigin
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 UserOrigin
impl Debug for UserOrigin
Source§impl<'de> Deserialize<'de> for UserOrigin
impl<'de> Deserialize<'de> for UserOrigin
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 FromStr for UserOrigin
impl FromStr for UserOrigin
Source§impl PartialEq for UserOrigin
impl PartialEq for UserOrigin
Source§impl Serialize for UserOrigin
impl Serialize for UserOrigin
impl Copy for UserOrigin
impl Eq for UserOrigin
impl StructuralPartialEq for UserOrigin
Auto Trait Implementations§
impl Freeze for UserOrigin
impl RefUnwindSafe for UserOrigin
impl Send for UserOrigin
impl Sync for UserOrigin
impl Unpin for UserOrigin
impl UnwindSafe for UserOrigin
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