Struct tauri::runtime::window::DetachedWindow[][src]

pub struct DetachedWindow<M: Params> {
    pub label: M::Label,
    pub dispatcher: <M::Runtime as Runtime>::Dispatcher,
}

A webview window that is not yet managed by Tauri.

Fields

label: M::Label

Name of the window

dispatcher: <M::Runtime as Runtime>::Dispatcher

The Dispatch associated with the window.

Trait Implementations

impl<M: Params> Clone for DetachedWindow<M>[src]

impl<M: Params> Eq for DetachedWindow<M>[src]

impl<M: Params> Hash for DetachedWindow<M>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Only use the DetachedWindow’s label to represent its hash.

impl<M: Params> PartialEq<DetachedWindow<M>> for DetachedWindow<M>[src]

fn eq(&self, other: &Self) -> bool[src]

Only use the DetachedWindow’s label to compare equality.

Auto Trait Implementations

impl<M> RefUnwindSafe for DetachedWindow<M> where
    <<M as Params>::Runtime as Runtime>::Dispatcher: RefUnwindSafe,
    <M as Params>::Label: RefUnwindSafe

impl<M> Send for DetachedWindow<M>

impl<M> Sync for DetachedWindow<M> where
    <<M as Params>::Runtime as Runtime>::Dispatcher: Sync

impl<M> Unpin for DetachedWindow<M> where
    <<M as Params>::Runtime as Runtime>::Dispatcher: Unpin,
    <M as Params>::Label: Unpin

impl<M> UnwindSafe for DetachedWindow<M> where
    <<M as Params>::Runtime as Runtime>::Dispatcher: UnwindSafe,
    <M as Params>::Label: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,