[][src]Enum savory_elements::view::icon::Icon

pub enum Icon<PMsg> {
    Svg(Svg<PMsg>),
    Html(Html),
    Url(Url),
}

Variants

Svg(Svg<PMsg>)
Html(Html)
Url(Url)

Implementations

impl<PMsg> Icon<PMsg>[src]

pub fn svg(draw: impl IntoIterator<Item = Node<PMsg>>) -> Svg<PMsg>[src]

pub fn html(html: impl Into<Cow<'static, str>>) -> Html[src]

pub fn url(url: impl Into<Cow<'static, str>>) -> Url[src]

Trait Implementations

impl<PMsg: Clone> Clone for Icon<PMsg>[src]

impl<PMsg> From<Html> for Icon<PMsg>[src]

impl<PMsg> From<Svg<PMsg>> for Icon<PMsg>[src]

impl<PMsg> From<Url> for Icon<PMsg>[src]

impl<PMsg> Stylable for Icon<PMsg>[src]

type Style = Style

Style used by the view

type Styler = Styler<Self, Style>

Styler that generate Style according to the view data

impl<PMsg> StyledView<Node<PMsg>> for Icon<PMsg>[src]

impl<PMsg> View<Node<PMsg>> for Icon<PMsg>[src]

Auto Trait Implementations

impl<PMsg> !RefUnwindSafe for Icon<PMsg>

impl<PMsg> !Send for Icon<PMsg>

impl<PMsg> !Sync for Icon<PMsg>

impl<PMsg> Unpin for Icon<PMsg>

impl<PMsg> !UnwindSafe for Icon<PMsg>

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

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

impl<'a, Msg, T> NodeModifier<'a, Msg> for T where
    T: View<Node<Msg>>, 
[src]

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, 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>,