pub struct Style {
pub background: Background,
pub dot_color: Color,
pub border_width: f32,
pub border_color: Color,
pub text_color: Option<Color>,
pub shadow: Shadow,
}Expand description
The appearance of a radio button.
Fields§
§background: BackgroundThe Background of the radio button.
dot_color: ColorThe Color of the dot of the radio button.
border_width: f32The border width of the radio button.
border_color: ColorThe border Color of the radio button.
text_color: Option<Color>The text Color of the radio button.
shadow: ShadowThe Shadow of the radio button.
Trait Implementations§
impl Copy for Style
impl StructuralPartialEq for Style
Auto Trait Implementations§
impl Freeze for Style
impl RefUnwindSafe for Style
impl Send for Style
impl Sync for Style
impl Unpin for Style
impl UnsafeUnpin for Style
impl UnwindSafe for Style
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