pub enum SurfaceFace {
PosX,
NegX,
PosY,
NegY,
PosZ,
NegZ,
}
Expand description
Specifies a surface on a cube.
Variants§
PosX
The +x
face
NegX
The -x
face
PosY
The +y
face
NegY
The -y
face
PosZ
The +z
face
NegZ
The -z
face
Implementations§
Trait Implementations§
Source§impl Clone for SurfaceFace
impl Clone for SurfaceFace
Source§fn clone(&self) -> SurfaceFace
fn clone(&self) -> SurfaceFace
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 SurfaceFace
impl Debug for SurfaceFace
Source§impl Default for SurfaceFace
impl Default for SurfaceFace
Source§impl Display for SurfaceFace
impl Display for SurfaceFace
Source§impl FromStr for SurfaceFace
impl FromStr for SurfaceFace
Source§impl PartialEq for SurfaceFace
impl PartialEq for SurfaceFace
impl Copy for SurfaceFace
impl Eq for SurfaceFace
impl StructuralPartialEq for SurfaceFace
Auto Trait Implementations§
impl Freeze for SurfaceFace
impl RefUnwindSafe for SurfaceFace
impl Send for SurfaceFace
impl Sync for SurfaceFace
impl Unpin for SurfaceFace
impl UnwindSafe for SurfaceFace
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