pub enum HardwareAcceleration {
Required,
Preferred,
Off,
}Available on crate feature
window only.Expand description
Selects the level of hardware graphics acceleration.
Variants§
Required
Require graphics acceleration.
Preferred
Prefer graphics acceleration, but fall back to software.
Off
Do NOT use graphics acceleration. On some platforms (MacOS) this is ignored and treated the same as Self::Preferred. On web, “willReadFrequently” is set to true.
Trait Implementations§
Source§impl Clone for HardwareAcceleration
impl Clone for HardwareAcceleration
Source§fn clone(&self) -> HardwareAcceleration
fn clone(&self) -> HardwareAcceleration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for HardwareAcceleration
Source§impl Debug for HardwareAcceleration
impl Debug for HardwareAcceleration
impl Eq for HardwareAcceleration
Source§impl PartialEq for HardwareAcceleration
impl PartialEq for HardwareAcceleration
Source§fn eq(&self, other: &HardwareAcceleration) -> bool
fn eq(&self, other: &HardwareAcceleration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HardwareAcceleration
Auto Trait Implementations§
impl Freeze for HardwareAcceleration
impl RefUnwindSafe for HardwareAcceleration
impl Send for HardwareAcceleration
impl Sync for HardwareAcceleration
impl Unpin for HardwareAcceleration
impl UnsafeUnpin for HardwareAcceleration
impl UnwindSafe for HardwareAcceleration
Blanket Implementations§
impl<T> AutoreleaseSafe for Twhere
T: ?Sized,
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