pub trait HtmlIFrameElementExt {
    // Required methods
    fn x_reload(&self);
    async fn x_set_source_async(&self, url: &str);
    async fn x_reload_async(&self);
    async fn x_wait_for_load(&self);
}

Required Methods§

source

fn x_reload(&self)

source

async fn x_set_source_async(&self, url: &str)

source

async fn x_reload_async(&self)

source

async fn x_wait_for_load(&self)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl HtmlIFrameElementExt for HtmlIFrameElement

source§

fn x_reload(&self)

source§

async fn x_set_source_async(&self, url: &str)

source§

async fn x_reload_async(&self)

source§

async fn x_wait_for_load(&self)

Implementors§