#[repr(i32)]pub enum OpenGlProfileHint {
Any = 0,
Core = 204_801,
Compat = 204_802,
}
Expand description
OpenGL profile tokens.
Variants§
Trait Implementations§
Source§impl Clone for OpenGlProfileHint
impl Clone for OpenGlProfileHint
Source§fn clone(&self) -> OpenGlProfileHint
fn clone(&self) -> OpenGlProfileHint
Returns a duplicate 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 OpenGlProfileHint
impl Debug for OpenGlProfileHint
Source§impl Hash for OpenGlProfileHint
impl Hash for OpenGlProfileHint
Source§impl Ord for OpenGlProfileHint
impl Ord for OpenGlProfileHint
Source§fn cmp(&self, other: &OpenGlProfileHint) -> Ordering
fn cmp(&self, other: &OpenGlProfileHint) -> 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 OpenGlProfileHint
impl PartialEq for OpenGlProfileHint
Source§impl PartialOrd for OpenGlProfileHint
impl PartialOrd for OpenGlProfileHint
impl Copy for OpenGlProfileHint
impl Eq for OpenGlProfileHint
impl StructuralPartialEq for OpenGlProfileHint
Auto Trait Implementations§
impl Freeze for OpenGlProfileHint
impl RefUnwindSafe for OpenGlProfileHint
impl Send for OpenGlProfileHint
impl Sync for OpenGlProfileHint
impl Unpin for OpenGlProfileHint
impl UnwindSafe for OpenGlProfileHint
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more