Enum opengl_graphics::OpenGL [−][src]
pub enum OpenGL {
V2_0,
V2_1,
V3_0,
V3_1,
V3_2,
V3_3,
V4_0,
V4_1,
V4_2,
V4_3,
V4_4,
V4_5,
}Variants
V2_0V2_1V3_0V3_1V3_2V3_3V4_0V4_1V4_2V4_3V4_4V4_5
Methods
impl OpenGL[src]
impl OpenGLpub fn get_major_minor(&self) -> (isize, isize)[src]
pub fn get_major_minor(&self) -> (isize, isize)Gets the minor version of OpenGL.
pub fn to_glsl(&self) -> GLSL[src]
pub fn to_glsl(&self) -> GLSLGets GLSL version associated with OpenGL.
Trait Implementations
impl PartialOrd<OpenGL> for OpenGL[src]
impl PartialOrd<OpenGL> for OpenGLfn partial_cmp(&self, other: &OpenGL) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &OpenGL) -> 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 Clone for OpenGL[src]
impl Clone for OpenGLfn clone(&self) -> OpenGL[src]
fn clone(&self) -> OpenGLReturns 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 FromStr for OpenGL[src]
impl FromStr for OpenGLtype Err = ParseOpenGLError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<OpenGL, <OpenGL as FromStr>::Err>[src]
fn from_str(s: &str) -> Result<OpenGL, <OpenGL as FromStr>::Err>Parses a string s to return a value of this type. Read more
impl Debug for OpenGL[src]
impl Debug for OpenGLfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Copy for OpenGL[src]
impl Copy for OpenGLimpl Ord for OpenGL[src]
impl Ord for OpenGLfn cmp(&self, other: &OpenGL) -> Ordering[src]
fn cmp(&self, other: &OpenGL) -> 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 Eq for OpenGL[src]
impl Eq for OpenGLimpl PartialEq<OpenGL> for OpenGL[src]
impl PartialEq<OpenGL> for OpenGL