#[repr(u8)]pub enum V6Direction {
YPos = 0,
YNeg = 1,
XPos = 2,
XNeg = 3,
ZPos = 4,
ZNeg = 5,
}Variants§
Trait Implementations§
Source§impl Clone for V6Direction
impl Clone for V6Direction
Source§fn clone(&self) -> V6Direction
fn clone(&self) -> V6Direction
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 V6Direction
Source§impl Debug for V6Direction
impl Debug for V6Direction
impl Eq for V6Direction
Source§impl PartialEq for V6Direction
impl PartialEq for V6Direction
impl StructuralPartialEq for V6Direction
Source§impl TryFrom<u8> for V6Direction
impl TryFrom<u8> for V6Direction
Source§type Error = TryFromPrimitiveError<V6Direction>
type Error = TryFromPrimitiveError<V6Direction>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for V6Direction
impl TryFromPrimitive for V6Direction
const NAME: &'static str = "V6Direction"
type Primitive = u8
type Error = TryFromPrimitiveError<V6Direction>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
Auto Trait Implementations§
impl Freeze for V6Direction
impl RefUnwindSafe for V6Direction
impl Send for V6Direction
impl Sync for V6Direction
impl Unpin for V6Direction
impl UnsafeUnpin for V6Direction
impl UnwindSafe for V6Direction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.