#[repr(u8)]pub enum EngineSelection {
B00 = 0,
B01 = 1,
B10 = 2,
B11 = 3,
}Expand description
Value on reset: 0
Variants§
Trait Implementations§
Source§impl Clone for EngineSelection
impl Clone for EngineSelection
Source§fn clone(&self) -> EngineSelection
fn clone(&self) -> EngineSelection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EngineSelection
Source§impl Debug for EngineSelection
impl Debug for EngineSelection
impl Eq for EngineSelection
Source§impl From<EngineSelection> for u8
impl From<EngineSelection> for u8
Source§fn from(variant: EngineSelection) -> Self
fn from(variant: EngineSelection) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EngineSelection
impl PartialEq for EngineSelection
Source§fn eq(&self, other: &EngineSelection) -> bool
fn eq(&self, other: &EngineSelection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EngineSelection
Auto Trait Implementations§
impl Freeze for EngineSelection
impl RefUnwindSafe for EngineSelection
impl Send for EngineSelection
impl Sync for EngineSelection
impl Unpin for EngineSelection
impl UnsafeUnpin for EngineSelection
impl UnwindSafe for EngineSelection
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