Enum gl_utils::shader::ProgramId [−]
pub enum ProgramId {
ClipSpace2dColor,
ClipSpace2dUniColor,
WorldSpace2dUniColor,
WorldSpace2dSprite,
WorldSpace2dTile,
WorldSpace3dUniColor,
WorldSpace3dAabb,
ModelSpace3dInstancedScaleColor,
ModelSpace3dInstancedOrientationScaleColor,
ModelSpace3dInstancedCapsule,
}Variants
ClipSpace2dColorClipSpace2dUniColorWorldSpace2dUniColorWorldSpace2dSpriteWorldSpace2dTileWorldSpace3dUniColorWorldSpace3dAabbModelSpace3dInstancedScaleColorModelSpace3dInstancedOrientationScaleColorModelSpace3dInstancedCapsule
Methods
impl ProgramId
impl ProgramIdⓘImportant traits for ProgramIdVariantspub fn iter_variants() -> ProgramIdVariants
pub fn iter_variants() -> ProgramIdVariantsimpl ProgramId
impl ProgramIdpub fn next_variant(&self) -> Option<ProgramId>
pub fn next_variant(&self) -> Option<ProgramId>impl ProgramId
impl ProgramIdpub fn prev_variant(&self) -> Option<ProgramId>
pub fn prev_variant(&self) -> Option<ProgramId>Trait Implementations
impl Clone for ProgramId
impl Clone for ProgramIdfn clone(&self) -> ProgramId
fn clone(&self) -> ProgramIdReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for ProgramId
impl Copy for ProgramIdimpl Debug for ProgramId
impl Debug for ProgramIdimpl Eq for ProgramId
impl Eq for ProgramIdimpl PartialEq for ProgramId
impl PartialEq for ProgramIdfn eq(&self, other: &ProgramId) -> bool
fn eq(&self, other: &ProgramId) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Ord for ProgramId
impl Ord for ProgramIdfn cmp(&self, other: &ProgramId) -> Ordering
fn cmp(&self, other: &ProgramId) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl PartialOrd for ProgramId
impl PartialOrd for ProgramIdfn partial_cmp(&self, other: &ProgramId) -> Option<Ordering>
fn partial_cmp(&self, other: &ProgramId) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src]
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
fn ge(&self, other: &Rhs) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl From<ProgramId> for isize
impl From<ProgramId> for isizeimpl From<ProgramId> for usize
impl From<ProgramId> for usizeimpl From<ProgramId> for i64
impl From<ProgramId> for i64impl From<ProgramId> for u64
impl From<ProgramId> for u64impl Bounded for ProgramId
impl Bounded for ProgramIdfn min_value() -> Self
fn min_value() -> Selfreturns the smallest finite number this type can represent
fn max_value() -> Self
fn max_value() -> Selfreturns the largest finite number this type can represent
impl FromPrimitive for ProgramId
impl FromPrimitive for ProgramIdfn from_i64(x: i64) -> Option<Self>
fn from_i64(x: i64) -> Option<Self>Convert an i64 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_u64(x: u64) -> Option<Self>
fn from_u64(x: u64) -> Option<Self>Convert an u64 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_isize(n: isize) -> Option<Self>[src]
fn from_isize(n: isize) -> Option<Self>Convert an isize to return an optional value of this type. If the value cannot be represented by this value, the None is returned. Read more
fn from_i8(n: i8) -> Option<Self>[src]
fn from_i8(n: i8) -> Option<Self>Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_i16(n: i16) -> Option<Self>[src]
fn from_i16(n: i16) -> Option<Self>Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_i32(n: i32) -> Option<Self>[src]
fn from_i32(n: i32) -> Option<Self>Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_i128(n: i128) -> Option<Self>[src]
fn from_i128(n: i128) -> Option<Self>Convert an i128 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_usize(n: usize) -> Option<Self>[src]
fn from_usize(n: usize) -> Option<Self>Convert a usize to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_u8(n: u8) -> Option<Self>[src]
fn from_u8(n: u8) -> Option<Self>Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_u16(n: u16) -> Option<Self>[src]
fn from_u16(n: u16) -> Option<Self>Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_u32(n: u32) -> Option<Self>[src]
fn from_u32(n: u32) -> Option<Self>Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_u128(n: u128) -> Option<Self>[src]
fn from_u128(n: u128) -> Option<Self>Convert an u128 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_f32(n: f32) -> Option<Self>[src]
fn from_f32(n: f32) -> Option<Self>Convert a f32 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
fn from_f64(n: f64) -> Option<Self>[src]
fn from_f64(n: f64) -> Option<Self>Convert a f64 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more
impl ToPrimitive for ProgramId
impl ToPrimitive for ProgramIdfn to_i64(&self) -> Option<i64>
fn to_i64(&self) -> Option<i64>Converts the value of self to an i64.
fn to_u64(&self) -> Option<u64>
fn to_u64(&self) -> Option<u64>Converts the value of self to an u64.
fn to_isize(&self) -> Option<isize>[src]
fn to_isize(&self) -> Option<isize>Converts the value of self to an isize.
fn to_i8(&self) -> Option<i8>[src]
fn to_i8(&self) -> Option<i8>Converts the value of self to an i8.
fn to_i16(&self) -> Option<i16>[src]
fn to_i16(&self) -> Option<i16>Converts the value of self to an i16.
fn to_i32(&self) -> Option<i32>[src]
fn to_i32(&self) -> Option<i32>Converts the value of self to an i32.
fn to_i128(&self) -> Option<i128>[src]
fn to_i128(&self) -> Option<i128>Converts the value of self to an i128. Read more
fn to_usize(&self) -> Option<usize>[src]
fn to_usize(&self) -> Option<usize>Converts the value of self to a usize.
fn to_u8(&self) -> Option<u8>[src]
fn to_u8(&self) -> Option<u8>Converts the value of self to an u8.
fn to_u16(&self) -> Option<u16>[src]
fn to_u16(&self) -> Option<u16>Converts the value of self to an u16.
fn to_u32(&self) -> Option<u32>[src]
fn to_u32(&self) -> Option<u32>Converts the value of self to an u32.
fn to_u128(&self) -> Option<u128>[src]
fn to_u128(&self) -> Option<u128>Converts the value of self to an u128. Read more
fn to_f32(&self) -> Option<f32>[src]
fn to_f32(&self) -> Option<f32>Converts the value of self to an f32.
fn to_f64(&self) -> Option<f64>[src]
fn to_f64(&self) -> Option<f64>Converts the value of self to an f64.
impl EnumUnitary for ProgramId
impl EnumUnitary for ProgramIdfn count_variants() -> usize
fn count_variants() -> usizefn iter_variants() -> Box<Iterator<Item = Self>>
fn iter_variants() -> Box<Iterator<Item = Self>>