Struct savory_elements::element::switch::Switch[][src]

pub struct Switch {
    pub color: Option<Color>,
    pub checkbox_like: bool,
    // some fields omitted
}

Fields

color: Option<Color>checkbox_like: bool

Implementations

impl Switch[src]

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

pub fn style(&self) -> &Style[src]

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

pub fn get_text(&self) -> Option<&Cow<'static, str>>[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<Color>[src]

pub fn checkbox_like(self, value: impl Into<bool>) -> Self[src]

impl Switch[src]

pub fn config() -> Config[src]

Trait Implementations

impl Element for Switch[src]

type Message = Msg

Element message

type Config = Config

Configuration used to initialize this element

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

Auto Trait Implementations

impl !RefUnwindSafe for Switch

impl !Send for Switch

impl !Sync for Switch

impl Unpin for Switch

impl !UnwindSafe for Switch

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