pub enum ProfileViewer {
RequestUser,
RequestModel,
User(UserId),
Group(GroupId),
Model(ModelId),
}Variants§
Trait Implementations§
Source§impl Clone for ProfileViewer
impl Clone for ProfileViewer
Source§fn clone(&self) -> ProfileViewer
fn clone(&self) -> ProfileViewer
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 moreimpl Copy for ProfileViewer
Source§impl Debug for ProfileViewer
impl Debug for ProfileViewer
impl Eq for ProfileViewer
Source§impl Hash for ProfileViewer
impl Hash for ProfileViewer
Source§impl Ord for ProfileViewer
impl Ord for ProfileViewer
Source§fn cmp(&self, other: &ProfileViewer) -> Ordering
fn cmp(&self, other: &ProfileViewer) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for ProfileViewer
impl PartialEq for ProfileViewer
Source§impl PartialOrd for ProfileViewer
impl PartialOrd for ProfileViewer
impl StructuralPartialEq for ProfileViewer
Auto Trait Implementations§
impl Freeze for ProfileViewer
impl RefUnwindSafe for ProfileViewer
impl Send for ProfileViewer
impl Sync for ProfileViewer
impl Unpin for ProfileViewer
impl UnsafeUnpin for ProfileViewer
impl UnwindSafe for ProfileViewer
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