[][src]Struct savory_html::attribute::Class

pub struct Class(_);

Implementations

impl Class[src]

pub fn into_inner(self) -> Vec<Cow<'static, str>>[src]

impl Class[src]

pub fn contains(&self, class: &Class) -> bool[src]

pub fn push(&mut self, class: impl Into<Class>) -> &mut Self[src]

Trait Implementations

impl<Msg> AddForEl<Class> for El<Msg>[src]

impl<Msg> AddForEl<Class> for Node<Msg>[src]

impl Clone for Class[src]

impl Debug for Class[src]

impl Display for Class[src]

impl Eq for Class[src]

impl Extend<&'static str> for Class[src]

impl Extend<Class> for Class[src]

impl Extend<Option<&'static str>> for Class[src]

impl Extend<Option<String>> for Class[src]

impl Extend<String> for Class[src]

impl From<&'static str> for Class[src]

impl From<Class> for Attribute[src]

impl From<Class> for Cow<'static, str>[src]

impl From<Option<&'static str>> for Class[src]

impl From<Option<String>> for Class[src]

impl From<String> for Class[src]

impl From<Vec<&'static str>> for Class[src]

impl From<Vec<Option<&'static str>>> for Class[src]

impl From<Vec<Option<String>>> for Class[src]

impl From<Vec<String>> for Class[src]

impl IntoIterator for Class[src]

type Item = <Vec<Cow<'static, str>> as IntoIterator>::Item

The type of the elements being iterated over.

type IntoIter = <Vec<Cow<'static, str>> as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?

impl PartialEq<Class> for Class[src]

impl StructuralEq for Class[src]

impl StructuralPartialEq for Class[src]

impl<Msg> UpdateEl<Msg> for Class[src]

Auto Trait Implementations

impl RefUnwindSafe for Class

impl Send for Class

impl Sync for Class

impl Unpin for Class

impl UnwindSafe for Class

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> Sealed<T> for T where
    T: ?Sized

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<V, T> VZip<V> for T where
    V: MultiLane<T>,