[][src]Struct arwa::html::HtmlScriptElement

pub struct HtmlScriptElement { /* fields omitted */ }

Methods

impl HtmlScriptElement[src]

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

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

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

pub fn set_no_module(&self, no_module: bool)[src]

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

pub fn set_defer(&self, defer: bool)[src]

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

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

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

pub fn set_asynchronous(&self, asynchronous: bool)[src]

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

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

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

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

pub fn cross_origin(&self) -> CORS[src]

pub fn set_cross_origin(&self, cross_origin: CORS)[src]

Trait Implementations

impl AsRef<Element> for HtmlScriptElement[src]

impl AsRef<EventTarget> for HtmlScriptElement[src]

impl AsRef<HtmlElement> for HtmlScriptElement[src]

impl AsRef<HtmlScriptElement> for HtmlScriptElement[src]

impl AsRef<Node> for HtmlScriptElement[src]

impl Clone for HtmlScriptElement[src]

impl Element for HtmlScriptElement[src]

impl From<HtmlScriptElement> for HtmlScriptElement[src]

impl From<HtmlScriptElement> for GenericHtmlElement[src]

impl From<HtmlScriptElement> for GenericElement[src]

impl From<HtmlScriptElement> for GenericNode[src]

impl GlobalEventHandlers for HtmlScriptElement[src]

impl HtmlElement for HtmlScriptElement[src]

impl Node for HtmlScriptElement[src]

impl TryFrom<GenericElement> for HtmlScriptElement[src]

type Error = InvalidCast<GenericElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericHtmlElement> for HtmlScriptElement[src]

type Error = InvalidCast<GenericHtmlElement>

The type returned in the event of a conversion error.

impl TryFrom<GenericNode> for HtmlScriptElement[src]

type Error = InvalidCast<GenericNode>

The type returned in the event of a conversion error.

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