[]Struct iced::widget::Checkbox

pub struct Checkbox<Message> { /* fields omitted */ }

A box that can be checked.

Example

pub enum Message {
    CheckboxToggled(bool),
}

let is_checked = true;

Checkbox::new(is_checked, "Toggle me!", Message::CheckboxToggled);

Checkbox drawn by iced_wgpu

Methods

impl<Message> Checkbox<Message>

pub fn new<F>(is_checked: bool, label: &str, f: F) -> Checkbox<Message> where
    F: 'static + Fn(bool) -> Message, 

Creates a new Checkbox.

It expects:

  • a boolean describing whether the Checkbox is checked or not
  • the label of the Checkbox
  • a function that will be called when the Checkbox is toggled. It will receive the new state of the Checkbox and must produce a Message.

pub fn label_color<C>(self, color: C) -> Checkbox<Message> where
    C: Into<Color>, 

Sets the color of the label of the Checkbox.

Trait Implementations

impl<Message, Renderer> Widget<Message, Renderer> for Checkbox<Message> where
    Renderer: Renderer, 

Auto Trait Implementations

impl<Message> !Send for Checkbox<Message>

impl<Message> !Sync for Checkbox<Message>

impl<Message> Unpin for Checkbox<Message>

impl<Message> !UnwindSafe for Checkbox<Message>

impl<Message> !RefUnwindSafe for Checkbox<Message>

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> SetParameter for T