[−][src]Struct iced_web::widget::button::Button
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]
E: Into<Element<'a, Message>>,
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]
Message: 'static + Clone,
impl<'a, Message> Widget<Message> for Button<'a, Message> where
Message: 'static + Clone,
[src]
Message: 'static + Clone,
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,
Message: Unpin,
impl<'a, Message> !UnwindSafe for Button<'a, Message>
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]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
[src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> ConvertInto<U> for T where
U: ConvertFrom<T>,
[src]
U: ConvertFrom<T>,
fn convert_into(self) -> U
[src]
fn convert_unclamped_into(self) -> U
[src]
fn try_convert_into(self) -> Result<U, OutOfBounds<U>>
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,