Enum entmet_lib::entities::entity::FoxInfo
source · #[repr(u8)]pub enum FoxInfo {
IsSitting = 1,
IsCrouching = 4,
IsInterested = 8,
IsPouncing = 16,
IsSleeping = 32,
IsFaceplanted = 64,
IsDefending = 128,
}Expand description
An enum of all states the fox can be in
Variants§
IsSitting = 1
IsCrouching = 4
IsInterested = 8
IsPouncing = 16
IsSleeping = 32
IsFaceplanted = 64
IsDefending = 128
Trait Implementations§
source§impl PartialEq for FoxInfo
impl PartialEq for FoxInfo
impl Copy for FoxInfo
impl Eq for FoxInfo
impl StructuralPartialEq for FoxInfo
Auto Trait Implementations§
impl Freeze for FoxInfo
impl RefUnwindSafe for FoxInfo
impl Send for FoxInfo
impl Sync for FoxInfo
impl Unpin for FoxInfo
impl UnwindSafe for FoxInfo
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