Struct iced_web::widget::button::Button[][src]

pub struct Button<'a, Message> { /* fields omitted */ }

A generic widget that produces a message when pressed.

enum Message {
    ButtonPressed,
}

let mut state = button::State::new();
let button = Button::new(&mut state, Text::new("Press me!"))
    .on_press(Message::ButtonPressed);

Implementations

impl<'a, Message> Button<'a, Message>[src]

pub fn new<E>(_state: &'a mut State, content: E) -> Self where
    E: Into<Element<'a, Message>>, 
[src]

Creates a new Button with some local State and the given content.

pub fn width(self, width: Length) -> Self[src]

Sets the width of the Button.

pub fn height(self, height: Length) -> Self[src]

Sets the height of the Button.

pub fn min_width(self, min_width: u32) -> Self[src]

Sets the minimum width of the Button.

pub fn min_height(self, min_height: u32) -> Self[src]

Sets the minimum height of the Button.

pub fn padding(self, padding: u16) -> Self[src]

Sets the padding of the Button.

pub fn style(self, style: impl Into<Box<dyn StyleSheet>>) -> Self[src]

Sets the style of the Button.

pub fn on_press(self, msg: Message) -> Self[src]

Sets the message that will be produced when the Button is pressed.

Trait Implementations

impl<'a, Message> From<Button<'a, Message>> for Element<'a, Message> where
    Message: 'static + Clone
[src]

impl<'a, Message> Widget<Message> for Button<'a, Message> where
    Message: 'static + Clone
[src]

Auto Trait Implementations

impl<'a, Message> !RefUnwindSafe for Button<'a, Message>

impl<'a, Message> !Send for Button<'a, Message>

impl<'a, Message> !Sync for Button<'a, Message>

impl<'a, Message> Unpin for Button<'a, Message> where
    Message: Unpin

impl<'a, Message> !UnwindSafe for Button<'a, Message>

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