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

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

A thinly-wrapped HashMap holding DOM attributes

Fields

vals: HashMap<At, String>

Methods

impl Attrs[src]

pub fn new(vals: HashMap<At, 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: At, val: &str)[src]

Add a new key, value pair

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

Add multiple values for a single attribute. Useful for classes.

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

Combine with another Attrs

Trait Implementations

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

impl<Ms, '_> 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]

impl Debug for Attrs[src]

Auto Trait Implementations

impl Send for Attrs

impl Sync for Attrs

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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