[][src]Enum sdl2::video::GLProfile

pub enum GLProfile {
    Core,
    Compatibility,
    GLES,
    Unknown(i32),
}

Variants

Core

OpenGL core profile - deprecated functions are disabled

Compatibility

OpenGL compatibility profile - deprecated functions are allowed

GLES

OpenGL ES profile - only a subset of the base OpenGL functionality is available

Unknown(i32)

Unknown profile - SDL will tend to return 0 if you ask when no particular profile has been defined or requested.

Trait Implementations

impl Clone for GLProfile[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for GLProfile[src]

impl Copy for GLProfile[src]

impl PartialEq<GLProfile> for GLProfile[src]

impl Debug for GLProfile[src]

impl Hash for GLProfile[src]

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for GLProfile

impl Sync for GLProfile

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]