Enum gfx::tex::CubeFace []

pub enum CubeFace {
    PosZ,
    NegZ,
    PosX,
    NegX,
    PosY,
    NegY,
}

The face of a cube texture to do an operation on.

Variants

PosZNegZPosXNegXPosYNegY

Trait Implementations

impl Debug for CubeFace

fn fmt(&self, __arg_0: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl Clone for CubeFace

fn clone(&self) -> CubeFace

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for CubeFace

impl Hash for CubeFace

fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher

impl PartialOrd<CubeFace> for CubeFace

fn partial_cmp(&self, __arg_0: &CubeFace) -> Option<Ordering>

impl PartialEq<CubeFace> for CubeFace

fn eq(&self, __arg_0: &CubeFace) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Ord for CubeFace

fn cmp(&self, __arg_0: &CubeFace) -> Ordering

impl Eq for CubeFace