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
sourceimpl SurfaceFace
impl SurfaceFace
Trait Implementations
sourceimpl Clone for SurfaceFace
impl Clone for SurfaceFace
sourcefn clone(&self) -> SurfaceFace
fn clone(&self) -> SurfaceFace
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SurfaceFace
impl Debug for SurfaceFace
sourceimpl Default for SurfaceFace
impl Default for SurfaceFace
sourceimpl Display for SurfaceFace
impl Display for SurfaceFace
sourceimpl FromStr for SurfaceFace
impl FromStr for SurfaceFace
sourceimpl PartialEq<SurfaceFace> for SurfaceFace
impl PartialEq<SurfaceFace> for SurfaceFace
impl Copy for SurfaceFace
impl Eq for SurfaceFace
impl StructuralEq for SurfaceFace
impl StructuralPartialEq for SurfaceFace
Auto Trait Implementations
impl RefUnwindSafe for SurfaceFace
impl Send for SurfaceFace
impl Sync for SurfaceFace
impl Unpin for SurfaceFace
impl UnwindSafe for SurfaceFace
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more