#[repr(u8)]pub enum CatVariant {
Tabby = 0,
Tuxedo = 1,
Red = 2,
Siamese = 3,
BritishShorthair = 4,
Calico = 5,
Persian = 6,
Ragdoll = 7,
White = 8,
Jellie = 9,
Black = 10,
}
Variants§
Tabby = 0
Tuxedo = 1
Red = 2
Siamese = 3
BritishShorthair = 4
Calico = 5
Persian = 6
Ragdoll = 7
White = 8
Jellie = 9
Black = 10
Implementations§
Trait Implementations§
Source§impl Clone for CatVariant
impl Clone for CatVariant
Source§fn clone(&self) -> CatVariant
fn clone(&self) -> CatVariant
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 CatVariant
impl Debug for CatVariant
Source§impl Default for CatVariant
impl Default for CatVariant
impl Copy for CatVariant
Auto Trait Implementations§
impl Freeze for CatVariant
impl RefUnwindSafe for CatVariant
impl Send for CatVariant
impl Sync for CatVariant
impl Unpin for CatVariant
impl UnwindSafe for CatVariant
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