Enum three_d::core::texture::CubeMapSide
source · pub enum CubeMapSide {
Top,
Bottom,
Right,
Left,
Front,
Back,
}Expand description
The 6 sides of a cube map
Variants§
Implementations§
source§impl CubeMapSide
impl CubeMapSide
Trait Implementations§
source§impl Clone for CubeMapSide
impl Clone for CubeMapSide
source§fn clone(&self) -> CubeMapSide
fn clone(&self) -> CubeMapSide
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 CubeMapSide
impl Debug for CubeMapSide
source§impl Ord for CubeMapSide
impl Ord for CubeMapSide
source§fn cmp(&self, other: &CubeMapSide) -> Ordering
fn cmp(&self, other: &CubeMapSide) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<CubeMapSide> for CubeMapSide
impl PartialEq<CubeMapSide> for CubeMapSide
source§fn eq(&self, other: &CubeMapSide) -> bool
fn eq(&self, other: &CubeMapSide) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<CubeMapSide> for CubeMapSide
impl PartialOrd<CubeMapSide> for CubeMapSide
source§fn partial_cmp(&self, other: &CubeMapSide) -> Option<Ordering>
fn partial_cmp(&self, other: &CubeMapSide) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more