Struct tauri::Builder[][src]

pub struct Builder<E, L, A, R> where
    E: Tag,
    L: Tag,
    A: Assets,
    R: Runtime
{ /* fields omitted */ }

Builds a Tauri application.

Implementations

impl<E, L, A, R> Builder<E, L, A, R> where
    E: Tag,
    L: Tag,
    A: Assets,
    R: Runtime
[src]

pub fn new() -> Self[src]

Creates a new App builder.

pub fn invoke_handler<F>(self, invoke_handler: F) -> Self where
    F: Fn(InvokeMessage<Args<E, L, A, R>>) + Send + Sync + 'static, 
[src]

Defines the JS message handler callback.

pub fn setup<F>(self, setup: F) -> Self where
    F: Fn(&mut App<Args<E, L, A, R>>) -> Result<(), Box<dyn Error>> + Send + 'static, 
[src]

Defines the setup hook.

pub fn on_page_load<F>(self, on_page_load: F) -> Self where
    F: Fn(Window<Args<E, L, A, R>>, PageLoadPayload) + Send + Sync + 'static, 
[src]

Defines the page load hook.

pub fn plugin<P: Plugin<Args<E, L, A, R>> + 'static>(self, plugin: P) -> Self[src]

Adds a plugin to the runtime.

pub fn create_window<F>(self, label: L, url: WindowUrl, setup: F) -> Self where
    F: FnOnce(<R::Dispatcher as Dispatch>::Attributes) -> <R::Dispatcher as Dispatch>::Attributes
[src]

Creates a new webview.

pub fn register_global_uri_scheme_protocol<N: Into<String>, H: Fn(&str) -> Result<Vec<u8>> + Send + Sync + 'static>(
    self,
    uri_scheme: N,
    protocol: H
) -> Self
[src]

Registers a URI scheme protocol available to all webviews. Leverages setURLSchemeHandler on macOS, AddWebResourceRequestedFilter on Windows and webkit-web-context-register-uri-scheme on Linux.

Arguments

  • uri_scheme The URI scheme to register, such as example.
  • protocol the protocol associated with the given URI scheme. It’s a function that takes an URL such as example://localhost/asset.css.

pub fn run(self, context: Context<A>) -> Result<()>[src]

Runs the configured Tauri application.

Trait Implementations

impl<A: Assets> Default for Builder<String, String, A, Wry>[src]

Make Wry the default Runtime for Builder

Auto Trait Implementations

impl<E, L, A, R> !RefUnwindSafe for Builder<E, L, A, R>

impl<E, L, A, R> Send for Builder<E, L, A, R>

impl<E, L, A, R> !Sync for Builder<E, L, A, R>

impl<E, L, A, R> Unpin for Builder<E, L, A, R> where
    L: Unpin,
    <<R as Runtime>::Dispatcher as Dispatch>::Attributes: Unpin

impl<E, L, A, R> !UnwindSafe for Builder<E, L, A, R>

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