pub struct EmulateMediaOptions {
pub color_scheme: Option<ColorScheme>,
pub engine: EngineType,
}Expand description
Options for media emulation.
Fields§
§color_scheme: Option<ColorScheme>The color scheme to emulate. None resets the emulation.
engine: EngineTypeThe engine type to use.
Implementations§
Source§impl EmulateMediaOptions
impl EmulateMediaOptions
Sourcepub fn new(engine: EngineType, color_scheme: Option<ColorScheme>) -> Self
pub fn new(engine: EngineType, color_scheme: Option<ColorScheme>) -> Self
Create options with a specific color scheme for the given engine.
Sourcepub fn dark(engine: EngineType) -> Self
pub fn dark(engine: EngineType) -> Self
Create options for dark color scheme.
Sourcepub fn light(engine: EngineType) -> Self
pub fn light(engine: EngineType) -> Self
Create options for light color scheme.
Sourcepub fn no_preference(engine: EngineType) -> Self
pub fn no_preference(engine: EngineType) -> Self
Create options for no-preference color scheme.
Sourcepub fn reset(engine: EngineType) -> Self
pub fn reset(engine: EngineType) -> Self
Create options to reset color scheme emulation.
Trait Implementations§
Source§impl Clone for EmulateMediaOptions
impl Clone for EmulateMediaOptions
Source§fn clone(&self) -> EmulateMediaOptions
fn clone(&self) -> EmulateMediaOptions
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 moreAuto Trait Implementations§
impl Freeze for EmulateMediaOptions
impl RefUnwindSafe for EmulateMediaOptions
impl Send for EmulateMediaOptions
impl Sync for EmulateMediaOptions
impl Unpin for EmulateMediaOptions
impl UnsafeUnpin for EmulateMediaOptions
impl UnwindSafe for EmulateMediaOptions
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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