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