pub struct Button<V> {
pub content: Pod<V>,
pub padding: Option<Padding>,
pub fancy: Option<f32>,
pub transition: Option<Transition>,
pub color: Option<Color>,
pub border_radius: Option<BorderRadius>,
pub border_width: Option<BorderWidth>,
pub border_color: Option<Color>,
}
Expand description
A button.
Can be styled using the ButtonStyle
.
Fields§
§content: Pod<V>
The content.
padding: Option<Padding>
The padding.
fancy: Option<f32>
The distance of the fancy effect.
transition: Option<Transition>
The transition of the button.
color: Option<Color>
The color of the button.
border_radius: Option<BorderRadius>
The border radius.
border_width: Option<BorderWidth>
The border width.
border_color: Option<Color>
The border color.
Implementations§
Source§impl<V> Button<V>
impl<V> Button<V>
Sourcepub fn fancy(self, fancy: impl Into<f32>) -> Button<V>
pub fn fancy(self, fancy: impl Into<f32>) -> Button<V>
Set self.fancy
.
The distance of the fancy effect.
Sourcepub fn transition(self, transition: impl Into<Transition>) -> Button<V>
pub fn transition(self, transition: impl Into<Transition>) -> Button<V>
Set self.transition
.
The transition of the button.
Sourcepub fn color(self, color: impl Into<Color>) -> Button<V>
pub fn color(self, color: impl Into<Color>) -> Button<V>
Set self.color
.
The color of the button.
Sourcepub fn border_radius(self, border_radius: impl Into<BorderRadius>) -> Button<V>
pub fn border_radius(self, border_radius: impl Into<BorderRadius>) -> Button<V>
Set self.border_radius
.
The border radius.
Sourcepub fn border_width(self, border_width: impl Into<BorderWidth>) -> Button<V>
pub fn border_width(self, border_width: impl Into<BorderWidth>) -> Button<V>
Set self.border_width
.
The border width.
Sourcepub fn border_color(self, border_color: impl Into<Color>) -> Button<V>
pub fn border_color(self, border_color: impl Into<Color>) -> Button<V>
Set self.border_color
.
The border color.
Trait Implementations§
Source§impl<V> Stylable for Button<V>
impl<V> Stylable for Button<V>
Source§impl<T, V> View<T> for Button<V>where
V: View<T>,
impl<T, V> View<T> for Button<V>where
V: View<T>,
Source§type State = (ButtonState, PodState<T, V>)
type State = (ButtonState, PodState<T, V>)
The state of the view, see top-level documentation for more information.
Source§fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> <Button<V> as View<T>>::State
fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Button<V> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
_: &mut <Button<V> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &Button<V>,
)
fn rebuild( &mut self, _: &mut <Button<V> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Button<V>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
_: &mut <Button<V> as View<T>>::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, _: &mut <Button<V> as View<T>>::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event, see top-level documentation for more information.
Auto Trait Implementations§
impl<V> Freeze for Button<V>where
V: Freeze,
impl<V> RefUnwindSafe for Button<V>where
V: RefUnwindSafe,
impl<V> Send for Button<V>where
V: Send,
impl<V> Sync for Button<V>where
V: Sync,
impl<V> Unpin for Button<V>where
V: Unpin,
impl<V> UnwindSafe for Button<V>where
V: UnwindSafe,
Blanket Implementations§
Source§impl<T, V> AnyView<T> for V
impl<T, V> AnyView<T> for V
Source§fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
Build the view.
Source§fn dyn_rebuild(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &dyn AnyView<T>,
)
fn dyn_rebuild( &mut self, state: &mut Box<dyn Any>, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &dyn AnyView<T>, )
Rebuild the view.
Source§fn dyn_event(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn dyn_event( &mut self, state: &mut Box<dyn Any>, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more