pub enum FacingCubic {
North = 0,
East = 1,
South = 2,
West = 3,
Up = 4,
Down = 5,
}
Variants§
Trait Implementations§
Source§impl Clone for FacingCubic
impl Clone for FacingCubic
Source§fn clone(&self) -> FacingCubic
fn clone(&self) -> FacingCubic
Returns a copy 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 FacingCubic
impl Debug for FacingCubic
Source§impl From<u16> for FacingCubic
impl From<u16> for FacingCubic
Source§fn from(value: BlockStateIntegerRepr) -> Self
fn from(value: BlockStateIntegerRepr) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FacingCubic
impl PartialEq for FacingCubic
Source§impl Property for FacingCubic
impl Property for FacingCubic
type Value = FacingCubic
fn try_from_block_state(block_state: BlockState) -> Option<Self::Value>
impl Copy for FacingCubic
impl Eq for FacingCubic
impl StructuralPartialEq for FacingCubic
Auto Trait Implementations§
impl Freeze for FacingCubic
impl RefUnwindSafe for FacingCubic
impl Send for FacingCubic
impl Sync for FacingCubic
impl Unpin for FacingCubic
impl UnwindSafe for FacingCubic
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