pub enum IdentityKind {
Mascot,
UnofficialMascot,
LogoCharacter,
LogoSymbol,
CompanionCharacter,
CommunityCharacter,
Symbol,
Unknown,
}Expand description
Broad identity category for a Fellow Friend fixture.
Variants§
Mascot
Mascot identity.
UnofficialMascot
Unofficial mascot identity.
LogoCharacter
Logo character identity.
LogoSymbol
Logo symbol identity.
CompanionCharacter
Companion character identity.
CommunityCharacter
Community character identity.
Symbol
Symbol identity.
Unknown
Unknown or intentionally unspecified identity category.
Trait Implementations§
Source§impl Clone for IdentityKind
impl Clone for IdentityKind
Source§fn clone(&self) -> IdentityKind
fn clone(&self) -> IdentityKind
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 IdentityKind
impl Debug for IdentityKind
Source§impl<'de> Deserialize<'de> for IdentityKind
impl<'de> Deserialize<'de> for IdentityKind
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<IdentityKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<IdentityKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for IdentityKind
impl Display for IdentityKind
Source§impl Hash for IdentityKind
impl Hash for IdentityKind
Source§impl Ord for IdentityKind
impl Ord for IdentityKind
Source§fn cmp(&self, other: &IdentityKind) -> Ordering
fn cmp(&self, other: &IdentityKind) -> 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
Source§impl PartialEq for IdentityKind
impl PartialEq for IdentityKind
Source§fn eq(&self, other: &IdentityKind) -> bool
fn eq(&self, other: &IdentityKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IdentityKind
impl PartialOrd for IdentityKind
Source§impl Serialize for IdentityKind
impl Serialize for IdentityKind
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for IdentityKind
impl Eq for IdentityKind
impl StructuralPartialEq for IdentityKind
Auto Trait Implementations§
impl Freeze for IdentityKind
impl RefUnwindSafe for IdentityKind
impl Send for IdentityKind
impl Sync for IdentityKind
impl Unpin for IdentityKind
impl UnsafeUnpin for IdentityKind
impl UnwindSafe for IdentityKind
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