Enum dae_parser::SurfaceFace
source · 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 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 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<SurfaceFace> for SurfaceFace
impl PartialEq<SurfaceFace> for SurfaceFace
source§fn eq(&self, other: &SurfaceFace) -> bool
fn eq(&self, other: &SurfaceFace) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.