#[repr(u32)]pub enum CatVariant {
Tabby = 0,
Black = 1,
Red = 2,
Siamese = 3,
BritishShorthair = 4,
Calico = 5,
Persian = 6,
Ragdoll = 7,
White = 8,
Jellie = 9,
AllBlack = 10,
}
Variants§
Tabby = 0
Black = 1
Red = 2
Siamese = 3
BritishShorthair = 4
Calico = 5
Persian = 6
Ragdoll = 7
White = 8
Jellie = 9
AllBlack = 10
Implementations§
Source§impl CatVariant
impl CatVariant
pub fn read_from_id( buf: &mut Cursor<&[u8]>, id: u32, ) -> Result<Self, BufReadError>
Source§impl CatVariant
impl CatVariant
Sourcepub unsafe fn from_u32_unchecked(id: u32) -> Self
pub unsafe fn from_u32_unchecked(id: u32) -> Self
pub fn is_valid_id(id: u32) -> bool
Trait Implementations§
Source§impl Clone for CatVariant
impl Clone for CatVariant
Source§fn clone(&self) -> CatVariant
fn clone(&self) -> CatVariant
Returns a copy 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<'de> Deserialize<'de> for CatVariant
impl<'de> Deserialize<'de> for CatVariant
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 Display for CatVariant
impl Display for CatVariant
Source§impl FromNbtTag for CatVariant
impl FromNbtTag for CatVariant
fn from_nbt_tag(tag: NbtTag<'_, '_>) -> Option<Self>
fn from_optional_nbt_tag( tag: Option<NbtTag<'_, '_>>, ) -> Result<Option<Self>, DeserializeError>
Source§impl FromStr for CatVariant
impl FromStr for CatVariant
Source§impl Hash for CatVariant
impl Hash for CatVariant
Source§impl McBufReadable for CatVariant
impl McBufReadable for CatVariant
Source§impl McBufWritable for CatVariant
impl McBufWritable for CatVariant
Source§impl PartialEq for CatVariant
impl PartialEq for CatVariant
Source§impl Registry for CatVariant
impl Registry for CatVariant
Source§impl Serialize for CatVariant
impl Serialize for CatVariant
Source§impl ToNbtTag for CatVariant
impl ToNbtTag for CatVariant
fn to_nbt_tag(self) -> NbtTag
fn to_optional_nbt_tag(self) -> Option<NbtTag>
Source§impl TryFrom<u32> for CatVariant
impl TryFrom<u32> for CatVariant
impl Copy for CatVariant
impl Eq for CatVariant
impl StructuralPartialEq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)