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

pub struct Attrs {
    pub vals: IndexMap<At, AtValue>,
}

A thinly-wrapped HashMap holding DOM attributes

Fields

vals: IndexMap<At, AtValue>

Methods

impl Attrs[src]

pub const fn new(vals: IndexMap<At, AtValue>) -> Self[src]

pub fn empty() -> Self[src]

pub fn from_id(name: impl Into<AtValue>) -> Self[src]

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

pub fn add(&mut self, key: At, val: impl Into<AtValue>)[src]

Add a new key, value pair

pub fn add_multiple(&mut self, key: At, items: &[&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]

impl PartialEq<Attrs> for Attrs[src]

impl Display for Attrs[src]

Create an HTML-compatible string representation

impl Debug for Attrs[src]

impl StructuralPartialEq for Attrs[src]

Auto Trait Implementations

impl Send for Attrs

impl Sync for Attrs

impl Unpin for Attrs

impl UnwindSafe for Attrs

impl RefUnwindSafe 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> ToString for T where
    T: Display + ?Sized
[src]

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]