Enum glutin::Api [−][src]
pub enum Api {
OpenGl,
OpenGlEs,
WebGl,
}All APIs related to OpenGL that you can possibly get while using glutin.
Variants
OpenGlThe classical OpenGL. Available on Windows, Linux, OS/X.
OpenGlEsOpenGL embedded system. Available on Linux, Android.
WebGlOpenGL for the web. Very similar to OpenGL ES.
Trait Implementations
impl Debug for Api[src]
impl Debug for Apifn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Api[src]
impl Clone for Apifn clone(&self) -> Api[src]
fn clone(&self) -> ApiReturns 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)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for Api[src]
impl Copy for Apiimpl PartialEq for Api[src]
impl PartialEq for Apifn eq(&self, other: &Api) -> bool[src]
fn eq(&self, other: &Api) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Eq for Api[src]
impl Eq for Api