Struct rat_widget::button::RButton
source · pub struct RButton<'a> { /* private fields */ }Expand description
Button widget.
Implementations§
source§impl<'a> RButton<'a>
impl<'a> RButton<'a>
sourcepub fn styles(self, styles: ButtonStyle) -> Self
pub fn styles(self, styles: ButtonStyle) -> Self
Set all styles.
sourcepub fn focus_style(self, style: impl Into<Style>) -> Self
pub fn focus_style(self, style: impl Into<Style>) -> Self
Style when focused.
sourcepub fn armed_style(self, style: impl Into<Style>) -> Self
pub fn armed_style(self, style: impl Into<Style>) -> Self
Style when the button is clicked but not yet released.
Trait Implementations§
source§impl<'a> StatefulWidget for RButton<'a>
impl<'a> StatefulWidget for RButton<'a>
source§impl<'a> StatefulWidgetRef for RButton<'a>
impl<'a> StatefulWidgetRef for RButton<'a>
§type State = RButtonState
type State = RButtonState
State associated with the stateful widget. Read more
Auto Trait Implementations§
impl<'a> Freeze for RButton<'a>
impl<'a> RefUnwindSafe for RButton<'a>
impl<'a> Send for RButton<'a>
impl<'a> Sync for RButton<'a>
impl<'a> Unpin for RButton<'a>
impl<'a> UnwindSafe for RButton<'a>
Blanket Implementations§
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more