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 for CubeMapSide
impl PartialEq for CubeMapSide
Source§impl PartialOrd for CubeMapSide
impl PartialOrd for CubeMapSide
impl Copy for CubeMapSide
impl Eq for CubeMapSide
impl StructuralPartialEq for CubeMapSide
Auto Trait Implementations§
impl Freeze for CubeMapSide
impl RefUnwindSafe for CubeMapSide
impl Send for CubeMapSide
impl Sync for CubeMapSide
impl Unpin for CubeMapSide
impl UnwindSafe for CubeMapSide
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