yew_stdweb::virtual_dom

Type Alias AttrValue

Source
pub type AttrValue = Cow<'static, str>;
Expand description

Attribute value

Aliased Type§

enum AttrValue {
    Borrowed(&'static str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'static str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.