[][src]Struct arwa::html::HtmlIFrameElement

pub struct HtmlIFrameElement { /* fields omitted */ }

Methods

impl HtmlIFrameElement[src]

pub fn name(&self) -> String[src]

pub fn set_name(&self, name: &str)[src]

pub fn src(&self) -> String[src]

pub fn set_src(&self, src: &str)[src]

pub fn srcdoc(&self) -> String[src]

pub fn set_srcdoc(&self, srcdoc: &str)[src]

pub fn allow_payment_request(&self) -> bool[src]

pub fn set_allow_payment_request(&self, allow_payment_request: bool)[src]

pub fn width(&self) -> u32[src]

pub fn set_width(&self, width: u32)[src]

pub fn height(&self) -> u32[src]

pub fn set_height(&self, height: u32)[src]

pub fn content_document(&self) -> Option<GenericDocument>[src]

Trait Implementations

impl AsRef<Element> for HtmlIFrameElement[src]

impl AsRef<EventTarget> for HtmlIFrameElement[src]

impl AsRef<HtmlElement> for HtmlIFrameElement[src]

impl AsRef<HtmlIFrameElement> for HtmlIFrameElement[src]

impl AsRef<Node> for HtmlIFrameElement[src]

impl Clone for HtmlIFrameElement[src]

impl Element for HtmlIFrameElement[src]

impl From<HtmlIFrameElement> for HtmlIFrameElement[src]

impl From<HtmlIFrameElement> for GenericHtmlElement[src]

impl From<HtmlIFrameElement> for GenericElement[src]

impl From<HtmlIFrameElement> for GenericNode[src]

impl GlobalEventHandlers for HtmlIFrameElement[src]

impl HtmlElement for HtmlIFrameElement[src]

impl Node for HtmlIFrameElement[src]

impl TryFrom<GenericElement> for HtmlIFrameElement[src]

type Error = InvalidCast<GenericElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericHtmlElement> for HtmlIFrameElement[src]

type Error = InvalidCast<GenericHtmlElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericNode> for HtmlIFrameElement[src]

type Error = InvalidCast<GenericNode>

The type returned in the event of a conversion error.

impl Write for HtmlIFrameElement[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.