Struct WebViewBuilder

Source
pub struct WebViewBuilder<'a, T: 'a, I, C> {
    pub title: &'a str,
    pub content: Option<Content<C>>,
    pub width: i32,
    pub height: i32,
    pub resizable: bool,
    pub debug: bool,
    pub invoke_handler: Option<I>,
    pub user_data: Option<T>,
    pub frameless: bool,
}
Expand description

Builder for constructing a WebView instance.

§Example

extern crate web_view;

use web_view::*;

fn main() {
    WebViewBuilder::new()
        .title("Minimal webview example")
        .content(Content::Url("https://en.m.wikipedia.org/wiki/Main_Page"))
        .size(800, 600)
        .resizable(true)
        .debug(true)
        .user_data(())
        .invoke_handler(|_webview, _arg| Ok(()))
        .build()
        .unwrap()
        .run()
        .unwrap();
}

Fields§

§title: &'a str§content: Option<Content<C>>§width: i32§height: i32§resizable: bool§debug: bool§invoke_handler: Option<I>§user_data: Option<T>§frameless: bool

Implementations§

Source§

impl<'a, T: 'a, I, C> WebViewBuilder<'a, T, I, C>
where I: FnMut(&mut WebView<'_, T>, &str) -> WVResult + 'a, C: AsRef<str>,

Source

pub fn new() -> Self

Source

pub fn title(self, title: &'a str) -> Self

Sets the title of the WebView window.

Defaults to "Application".

Source

pub fn content(self, content: Content<C>) -> Self

Sets the content of the WebView. Either a URL or a HTML string.

Source

pub fn size(self, width: i32, height: i32) -> Self

Sets the size of the WebView window.

Defaults to 800 x 600.

Source

pub fn resizable(self, resizable: bool) -> Self

Sets the resizability of the WebView window. If set to false, the window cannot be resized.

Defaults to true.

Source

pub fn debug(self, debug: bool) -> Self

Enables or disables debug mode.

Defaults to true for debug builds, false for release builds.

Source

pub fn frameless(self, frameless: bool) -> Self

The window crated will be frameless

defaults to false

Source

pub fn invoke_handler(self, invoke_handler: I) -> Self

Sets the invoke handler callback. This will be called when a message is received from JavaScript.

§Errors

If the closure returns an Err, it will be returned on the next call to step().

Source

pub fn user_data(self, user_data: T) -> Self

Sets the initial state of the user data. This is an arbitrary value stored on the WebView thread, accessible from dispatched closures without synchronization overhead.

Source

pub fn build(self) -> WVResult<WebView<'a, T>>

Validates provided arguments and returns a new WebView if successful.

Source

pub fn run(self) -> WVResult<T>

Validates provided arguments and runs a new WebView to completion, returning the user data.

Equivalent to build()?.run().

Trait Implementations§

Source§

impl<'a, T: 'a, I, C> Default for WebViewBuilder<'a, T, I, C>
where I: FnMut(&mut WebView<'_, T>, &str) -> WVResult + 'a, C: AsRef<str>,

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<'a, T, I, C> Freeze for WebViewBuilder<'a, T, I, C>
where I: Freeze, T: Freeze, C: Freeze,

§

impl<'a, T, I, C> RefUnwindSafe for WebViewBuilder<'a, T, I, C>

§

impl<'a, T, I, C> Send for WebViewBuilder<'a, T, I, C>
where I: Send, T: Send, C: Send,

§

impl<'a, T, I, C> Sync for WebViewBuilder<'a, T, I, C>
where I: Sync, T: Sync, C: Sync,

§

impl<'a, T, I, C> Unpin for WebViewBuilder<'a, T, I, C>
where I: Unpin, T: Unpin, C: Unpin,

§

impl<'a, T, I, C> UnwindSafe for WebViewBuilder<'a, T, I, C>
where I: UnwindSafe, T: UnwindSafe, C: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.