pub enum FrozenStatus {
NotFrozen,
Frozen,
}
Expand description
Enum to represent an entity’s frozen status. A frozen entity does need updates to it’s rendering.
Variants
NotFrozen
Frozen
Implementations
sourceimpl FrozenStatus
impl FrozenStatus
pub fn from_u8(bit: u8) -> FrozenStatus
Trait Implementations
sourceimpl Clone for FrozenStatus
impl Clone for FrozenStatus
sourcefn clone(&self) -> FrozenStatus
fn clone(&self) -> FrozenStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FrozenStatus
impl Debug for FrozenStatus
impl Copy for FrozenStatus
Auto Trait Implementations
impl RefUnwindSafe for FrozenStatus
impl Send for FrozenStatus
impl Sync for FrozenStatus
impl Unpin for FrozenStatus
impl UnwindSafe for FrozenStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more