pub enum Afterburner {
AfterburnerNotOn = 0,
AfterburnerOn = 1,
}
Expand description
Enum to represent an entity’s afterburner status.
Variants§
Implementations§
Source§impl Afterburner
impl Afterburner
pub fn from_u8(bit: u8) -> Afterburner
Trait Implementations§
Source§impl Clone for Afterburner
impl Clone for Afterburner
Source§fn clone(&self) -> Afterburner
fn clone(&self) -> Afterburner
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 Afterburner
impl Debug for Afterburner
impl Copy for Afterburner
Auto Trait Implementations§
impl Freeze for Afterburner
impl RefUnwindSafe for Afterburner
impl Send for Afterburner
impl Sync for Afterburner
impl Unpin for Afterburner
impl UnwindSafe for Afterburner
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