pub enum RawConfig {
Egl(*const c_void),
Wgl(i32),
}
Expand description
Raw config.
Variants§
Egl(*const c_void)
Available on
egl_backend
only.Raw EGL config.
Wgl(i32)
Available on
wgl_backend
only.WGL pixel format index.
Trait Implementations§
impl Copy for RawConfig
impl Eq for RawConfig
impl StructuralPartialEq for RawConfig
Auto Trait Implementations§
impl Freeze for RawConfig
impl RefUnwindSafe for RawConfig
impl !Send for RawConfig
impl !Sync for RawConfig
impl Unpin for RawConfig
impl UnwindSafe for RawConfig
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