[][src]Struct seed::virtual_dom::style::Style

pub struct Style {
    pub vals: IndexMap<St, CSSValue>,
}

Handle Style separately from Attrs, since it commonly involves multiple parts, and has a different semantic meaning.

Fields

vals: IndexMap<St, CSSValue>

Methods

impl Style[src]

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

pub fn empty() -> Self[src]

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

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

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

Trait Implementations

impl Clone for Style[src]

impl Debug for Style[src]

impl Display for Style[src]

Output style as a string, as would be set in the DOM as the attribute value for 'style'. Eg: "display: flex; font-size: 1.5em"

impl PartialEq<Style> for Style[src]

impl StructuralPartialEq for Style[src]

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

impl<'_, Ms> UpdateEl<El<Ms>> for &'_ Style[src]

Auto Trait Implementations

impl RefUnwindSafe for Style

impl Send for Style

impl Sync for Style

impl Unpin for Style

impl UnwindSafe for Style

Blanket Implementations

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<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.