pub enum HardwareAcceleration {
Required,
Preferred,
Off,
}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
Available on crate feature window only.
impl Clone for HardwareAcceleration
Available on crate feature
window only.Source§fn clone(&self) -> HardwareAcceleration
fn clone(&self) -> HardwareAcceleration
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 HardwareAcceleration
Available on crate feature window only.
impl Debug for HardwareAcceleration
Available on crate feature
window only.Source§impl PartialEq for HardwareAcceleration
Available on crate feature window only.
impl PartialEq for HardwareAcceleration
Available on crate feature
window only.impl Copy for HardwareAcceleration
Available on crate feature
window only.impl Eq for HardwareAcceleration
Available on crate feature
window only.impl StructuralPartialEq for HardwareAcceleration
Available on crate feature
window only.Auto Trait Implementations§
impl Freeze for HardwareAcceleration
impl RefUnwindSafe for HardwareAcceleration
impl Send for HardwareAcceleration
impl Sync for HardwareAcceleration
impl Unpin for HardwareAcceleration
impl UnwindSafe for HardwareAcceleration
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