[][src]Struct seed::dom_types::Attrs

pub struct Attrs {
    pub vals: HashMap<String, String>,
}

A thinly-wrapped HashMap holding DOM attributes

Fields

vals: HashMap<String, String>

Methods

impl Attrs
[src]

pub fn new(vals: HashMap<String, String>) -> Self
[src]

pub fn empty() -> Self
[src]

pub fn from_id(name: &str) -> Self
[src]

Convenience function. Ideal when there's one id, and no other attrs. Generally called with the id! macro.

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

Create an HTML-compatible string representation

pub fn add(&mut self, key: &str, val: &str)
[src]

Add a new key, value pair

pub fn add_multiple(&mut self, name: &str, items: Vec<&str>)
[src]

pub fn merge(&self, other: &Self) -> Self
[src]

Combine with another Attrs; if there's a conflict, use the other one.

Trait Implementations

impl<Ms: Clone> UpdateEl<El<Ms>> for Attrs
[src]

impl<Ms: Clone, '_> UpdateEl<El<Ms>> for &'_ Attrs
[src]

impl Clone for Attrs
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Attrs> for Attrs
[src]

Auto Trait Implementations

impl Send for Attrs

impl Sync for Attrs

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.