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