Struct tauri_runtime::window::DetachedWindow [−][src]
pub struct DetachedWindow<P: Params> { pub label: P::Label, pub dispatcher: <P::Runtime as Runtime>::Dispatcher, }
Expand description
A webview window that is not yet managed by Tauri.
Fields
label: P::Label
Name of the window
dispatcher: <P::Runtime as Runtime>::Dispatcher
The Dispatch
associated with the window.
Trait Implementations
Auto Trait Implementations
impl<P> RefUnwindSafe for DetachedWindow<P> where
<<P as Params>::Runtime as Runtime>::Dispatcher: RefUnwindSafe,
<P as Params>::Label: RefUnwindSafe,
impl<P> Send for DetachedWindow<P>
impl<P> Sync for DetachedWindow<P> where
<<P as Params>::Runtime as Runtime>::Dispatcher: Sync,
impl<P> Unpin for DetachedWindow<P> where
<<P as Params>::Runtime as Runtime>::Dispatcher: Unpin,
<P as Params>::Label: Unpin,
impl<P> UnwindSafe for DetachedWindow<P> where
<<P as Params>::Runtime as Runtime>::Dispatcher: UnwindSafe,
<P as Params>::Label: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more