tauri_runtime_wry

Struct WryWebviewDispatcher

source
pub struct WryWebviewDispatcher<T: UserEvent> { /* private fields */ }
Expand description

The Tauri WebviewDispatch for Wry.

Trait Implementations§

source§

impl<T: Clone + UserEvent> Clone for WryWebviewDispatcher<T>

source§

fn clone(&self) -> WryWebviewDispatcher<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + UserEvent> Debug for WryWebviewDispatcher<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: UserEvent> WebviewDispatch<T> for WryWebviewDispatcher<T>

source§

fn is_devtools_open(&self) -> Result<bool>

Gets the devtools window’s current open state.

source§

type Runtime = Wry<T>

The runtime this WebviewDispatch runs under.
source§

fn run_on_main_thread<F: FnOnce() + Send + 'static>(&self, f: F) -> Result<()>

Run a task on the main thread.
source§

fn on_webview_event<F: Fn(&WebviewEvent) + Send + 'static>( &self, f: F, ) -> WindowEventId

Registers a webview event handler.
source§

fn with_webview<F: FnOnce(Box<dyn Any>) + Send + 'static>( &self, f: F, ) -> Result<()>

Runs a closure with the platform webview object as argument.
source§

fn open_devtools(&self)

Open the web inspector which is usually called devtools.
source§

fn close_devtools(&self)

Close the web inspector which is usually called devtools.
source§

fn url(&self) -> Result<String>

Returns the webview’s current URL.
source§

fn bounds(&self) -> Result<Rect>

Returns the webview’s bounds.
source§

fn position(&self) -> Result<PhysicalPosition<i32>>

Returns the position of the top-left hand corner of the webviews’s client area relative to the top-left hand corner of the window.
source§

fn size(&self) -> Result<PhysicalSize<u32>>

Returns the physical size of the webviews’s client area.
source§

fn navigate(&self, url: Url) -> Result<()>

Navigate to the given URL.
source§

fn print(&self) -> Result<()>

Opens the dialog to prints the contents of the webview.
source§

fn close(&self) -> Result<()>

Closes the webview.
source§

fn set_bounds(&self, bounds: Rect) -> Result<()>

Sets the webview’s bounds.
source§

fn set_size(&self, size: Size) -> Result<()>

Resizes the webview.
source§

fn set_position(&self, position: Position) -> Result<()>

Updates the webview position.
source§

fn set_focus(&self) -> Result<()>

Bring the window to front and focus the webview.
source§

fn reparent(&self, window_id: WindowId) -> Result<()>

Moves the webview to the given window.
source§

fn set_auto_resize(&self, auto_resize: bool) -> Result<()>

Sets whether the webview should automatically grow and shrink its size and position when the parent window resizes.
source§

fn eval_script<S: Into<String>>(&self, script: S) -> Result<()>

Executes javascript on the window this WindowDispatch represents.
source§

fn set_zoom(&self, scale_factor: f64) -> Result<()>

Set the webview zoom level
source§

fn clear_all_browsing_data(&self) -> Result<()>

Clear all browsing data for this webview.
source§

fn hide(&self) -> Result<()>

Hide the webview
source§

fn show(&self) -> Result<()>

Show the webview

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
source§

impl<T> UserEvent for T
where T: Debug + Clone + Send + 'static,