pub enum ShellBackend {
Wry,
Headless,
}Expand description
The rendering backend used for the native shell window.
Variants§
Wry
Use the Wry (WebView) library for the native window.
Headless
Headless mode — no actual window, useful for testing and CI.
Trait Implementations§
Source§impl Clone for ShellBackend
impl Clone for ShellBackend
Source§fn clone(&self) -> ShellBackend
fn clone(&self) -> ShellBackend
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 moreSource§impl Debug for ShellBackend
impl Debug for ShellBackend
Source§impl PartialEq for ShellBackend
impl PartialEq for ShellBackend
Source§fn eq(&self, other: &ShellBackend) -> bool
fn eq(&self, other: &ShellBackend) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ShellBackend
impl Eq for ShellBackend
impl StructuralPartialEq for ShellBackend
Auto Trait Implementations§
impl Freeze for ShellBackend
impl RefUnwindSafe for ShellBackend
impl Send for ShellBackend
impl Sync for ShellBackend
impl Unpin for ShellBackend
impl UnsafeUnpin for ShellBackend
impl UnwindSafe for ShellBackend
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