[][src]Struct arwa::html::HtmlAnchorElement

pub struct HtmlAnchorElement { /* fields omitted */ }

Methods

impl HtmlAnchorElement[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn referrer_policy(&self) -> ReferrerPolicy[src]

pub fn set_referrer_policy(&self, referrer_policy: ReferrerPolicy)[src]

pub fn rel(&self) -> AnchorRel[src]

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

Trait Implementations

impl AsRef<Element> for HtmlAnchorElement[src]

impl AsRef<EventTarget> for HtmlAnchorElement[src]

impl AsRef<HtmlAnchorElement> for HtmlAnchorElement[src]

impl AsRef<HtmlElement> for HtmlAnchorElement[src]

impl AsRef<Node> for HtmlAnchorElement[src]

impl Clone for HtmlAnchorElement[src]

impl Element for HtmlAnchorElement[src]

impl From<HtmlAnchorElement> for HtmlAnchorElement[src]

impl From<HtmlAnchorElement> for GenericHtmlElement[src]

impl From<HtmlAnchorElement> for GenericElement[src]

impl From<HtmlAnchorElement> for GenericNode[src]

impl GlobalEventHandlers for HtmlAnchorElement[src]

impl HtmlElement for HtmlAnchorElement[src]

impl Node for HtmlAnchorElement[src]

impl TryFrom<GenericElement> for HtmlAnchorElement[src]

type Error = InvalidCast<GenericElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericHtmlElement> for HtmlAnchorElement[src]

type Error = InvalidCast<GenericHtmlElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericNode> for HtmlAnchorElement[src]

type Error = InvalidCast<GenericNode>

The type returned in the event of a conversion error.

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