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

pub struct PendingWindow<M: Params> {
    pub label: M::Label,
    pub url: WindowUrl,
    pub attributes: <<M::Runtime as Runtime>::Dispatcher as Dispatch>::Attributes,
    pub rpc_handler: Option<Box<dyn Fn(DetachedWindow<M>, RpcRequest) + Send>>,
    pub custom_protocol: Option<CustomProtocol>,
    pub file_drop_handler: Option<Box<dyn Fn(FileDropEvent, DetachedWindow<M>) -> bool + Send>>,
}

A webview window that has yet to be built.

Fields

label: M::Label

The label that the window will be named.

url: WindowUrl

The url the window will open with.

attributes: <<M::Runtime as Runtime>::Dispatcher as Dispatch>::Attributes

The Attributes that the webview window be created with.

rpc_handler: Option<Box<dyn Fn(DetachedWindow<M>, RpcRequest) + Send>>

How to handle RPC calls on the webview window.

custom_protocol: Option<CustomProtocol>

How to handle custom protocols for the webview window.

file_drop_handler: Option<Box<dyn Fn(FileDropEvent, DetachedWindow<M>) -> bool + Send>>

How to handle a file dropping onto the webview window.

Implementations

impl<M: Params> PendingWindow<M>[src]

pub fn new(
    attributes: <<M::Runtime as Runtime>::Dispatcher as Dispatch>::Attributes,
    label: M::Label,
    url: WindowUrl
) -> Self
[src]

Create a new PendingWindow with a label and starting url.

pub fn with_config(
    window_config: WindowConfig,
    label: M::Label,
    url: WindowUrl
) -> Self
[src]

Create a new PendingWindow from a WindowConfig with a label and starting url.

Auto Trait Implementations

impl<M> !RefUnwindSafe for PendingWindow<M>

impl<M> Send for PendingWindow<M>

impl<M> !Sync for PendingWindow<M>

impl<M> Unpin for PendingWindow<M> where
    <<<M as Params>::Runtime as Runtime>::Dispatcher as Dispatch>::Attributes: Unpin,
    <M as Params>::Label: Unpin

impl<M> !UnwindSafe for PendingWindow<M>

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<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, 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>,