[][src]Struct arwa::html::HtmlObjectElement

pub struct HtmlObjectElement { /* fields omitted */ }

Methods

impl HtmlObjectElement[src]

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

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

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

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

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

pub fn set_type_must_match(&self, type_must_match: bool)[src]

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

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

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

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

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

pub fn validity(&self) -> ValidityState[src]

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

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

pub fn set_mime_type(&self, mime_type: &str)[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 form(&self) -> Option<HtmlFormElement>[src]

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

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

Trait Implementations

impl AsRef<Element> for HtmlObjectElement[src]

impl AsRef<EventTarget> for HtmlObjectElement[src]

impl AsRef<HtmlElement> for HtmlObjectElement[src]

impl AsRef<HtmlObjectElement> for HtmlObjectElement[src]

impl AsRef<Node> for HtmlObjectElement[src]

impl Clone for HtmlObjectElement[src]

impl Element for HtmlObjectElement[src]

impl From<HtmlObjectElement> for HtmlObjectElement[src]

impl From<HtmlObjectElement> for GenericHtmlElement[src]

impl From<HtmlObjectElement> for GenericElement[src]

impl From<HtmlObjectElement> for GenericNode[src]

impl GlobalEventHandlers for HtmlObjectElement[src]

impl HtmlElement for HtmlObjectElement[src]

impl Node for HtmlObjectElement[src]

impl TryFrom<GenericElement> for HtmlObjectElement[src]

type Error = InvalidCast<GenericElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericHtmlElement> for HtmlObjectElement[src]

type Error = InvalidCast<GenericHtmlElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericNode> for HtmlObjectElement[src]

type Error = InvalidCast<GenericNode>

The type returned in the event of a conversion error.

impl Write for HtmlObjectElement[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.