[][src]Struct tether::Window

pub struct Window { /* fields omitted */ }

A window, which may or may not be open.

Methods

impl Window[src]

pub fn new(opts: Options) -> Self[src]

Make a new window with the given options.

pub fn with_handler(handler: impl Handler) -> Self[src]

Make a new window with the default options and the given handler.

pub fn eval<I: Into<String>>(&self, s: I)[src]

Evaluate the given JavaScript asynchronously.

pub fn load<I: Into<String>>(&self, s: I)[src]

Load the given HTML asynchronously.

pub fn title<I: Into<String>>(&self, s: I)[src]

Set this window's title to the given string.

pub fn focus(&self)[src]

Focus this window above the other windows.

pub fn close(&self)[src]

Close this window.

Trait Implementations

impl Clone for Window[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Window[src]

Auto Trait Implementations

impl !Sync for Window

impl !Send for Window

impl Unpin for Window

impl !RefUnwindSafe for Window

impl !UnwindSafe for Window

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]