Struct savory_elements::element::button::Button[][src]

pub struct Button { /* fields omitted */ }

Button element

Implementations

impl Button[src]

pub fn get_id(&self) -> Option<&Id>[src]

pub fn get_text(&self) -> Option<&Cow<'static, str>>[src]

pub fn get_icon(&self) -> Option<&Svg<Msg>>[src]

pub fn is_disabled(&self) -> bool[src]

pub fn is_focused(&self) -> bool[src]

pub fn is_mouse_over(&self) -> bool[src]

pub fn get_color(&self) -> Option<Hsl>[src]

pub fn get_text_color(&self) -> Option<Hsl>[src]

pub fn action_type(&self) -> ActionType[src]

pub fn kind(&self) -> Kind[src]

pub fn is_ghost(&self) -> bool[src]

impl Button[src]

pub fn config() -> Config[src]

Trait Implementations

impl Element for Button[src]

type Message = Msg

Element message

type Config = Config

Configuration used to initialize this element

impl View<Node<Msg>> for Button[src]

Auto Trait Implementations

impl !RefUnwindSafe for Button

impl !Send for Button

impl !Sync for Button

impl Unpin for Button

impl !UnwindSafe for Button

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: Component + Float,
    D: AdaptFrom<S, Swp, Dwp, T>,
    Swp: WhitePoint,
    Dwp: WhitePoint
[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, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

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

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