pub struct TauriOpener<R: Runtime> { /* private fields */ }Expand description
Opens URLs in the user’s default browser.
Deliberately limited to URLs: this is not a general shell escape, and a product that needs to run local programs must define its own contract and capability (ADR-0007).
Implementations§
Trait Implementations§
Source§impl<R: Clone + Runtime> Clone for TauriOpener<R>
impl<R: Clone + Runtime> Clone for TauriOpener<R>
Source§fn clone(&self) -> TauriOpener<R>
fn clone(&self) -> TauriOpener<R>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<R> !RefUnwindSafe for TauriOpener<R>
impl<R> !UnwindSafe for TauriOpener<R>
impl<R> Freeze for TauriOpener<R>
impl<R> Send for TauriOpener<R>
impl<R> Sync for TauriOpener<R>
impl<R> Unpin for TauriOpener<R>
impl<R> UnsafeUnpin for TauriOpener<R>where
AppHandle<R>: UnsafeUnpin,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more