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
Expand description
Name of the window
dispatcher: <P::Runtime as Runtime>::Dispatcher
Expand description
The Dispatch
associated with the window.
Trait Implementations
impl<P: Params> Clone for DetachedWindow<P>
[src]
impl<P: Params> Clone for DetachedWindow<P>
[src]impl<P: Params> Hash for DetachedWindow<P>
[src]
impl<P: Params> Hash for DetachedWindow<P>
[src]impl<P: Params> PartialEq<DetachedWindow<P>> for DetachedWindow<P>
[src]
impl<P: Params> PartialEq<DetachedWindow<P>> for DetachedWindow<P>
[src]impl<P: Params> Eq for DetachedWindow<P>
[src]
Auto Trait Implementations
impl<P> RefUnwindSafe for DetachedWindow<P> where
<<P as Params>::Runtime as Runtime>::Dispatcher: RefUnwindSafe,
<P as Params>::Label: RefUnwindSafe,
<<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,
<<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,
<<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,
<<P as Params>::Runtime as Runtime>::Dispatcher: UnwindSafe,
<P as Params>::Label: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more