pub enum AppKind {
Browser,
Electron,
WebView2,
Cef,
}Expand description
How an app hosts its embedded Chromium profile.
Variants§
Browser
A real web browser (Chrome, Edge, Brave, Firefox, …).
Electron
An Electron app (bundles Chromium + Node; user data under appData).
WebView2
A Microsoft WebView2 host app (UDF, often named EBWebView).
Cef
A Chromium Embedded Framework host app (e.g. Steam, Spotify).
Trait Implementations§
impl Copy for AppKind
impl Eq for AppKind
impl StructuralPartialEq for AppKind
Auto Trait Implementations§
impl Freeze for AppKind
impl RefUnwindSafe for AppKind
impl Send for AppKind
impl Sync for AppKind
impl Unpin for AppKind
impl UnsafeUnpin for AppKind
impl UnwindSafe for AppKind
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