pub struct TooltipStyle {Show 15 fields
pub delay: f32,
pub padding: Padding,
pub font_size: f32,
pub font_family: FontFamily,
pub font_weight: FontWeight,
pub font_stretch: FontStretch,
pub font_style: FontStyle,
pub color: Color,
pub align: TextAlign,
pub line_height: f32,
pub wrap: TextWrap,
pub background: Color,
pub border_radius: BorderRadius,
pub border_width: BorderWidth,
pub border_color: Color,
}
Expand description
The style of a Tooltip
.
Fields§
§delay: f32
The delay before the tooltip is displayed.
padding: Padding
The padding of the text.
font_size: f32
The font size of the text.
font_family: FontFamily
The font family of the text.
font_weight: FontWeight
The font weight of the text.
font_stretch: FontStretch
The font stretch of the text.
font_style: FontStyle
The font style of the text.
color: Color
The color of text.
align: TextAlign
The horizontal alignment of the text.
line_height: f32
The line height of the text.
wrap: TextWrap
The text wrap of the text.
background: Color
The background color of the text.
border_radius: BorderRadius
The border radius of the text.
border_width: BorderWidth
The border width of the text.
border_color: Color
The border color of the text.
Trait Implementations§
Source§impl Clone for TooltipStyle
impl Clone for TooltipStyle
Source§fn clone(&self) -> TooltipStyle
fn clone(&self) -> TooltipStyle
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Rebuild for TooltipStyle
impl Rebuild for TooltipStyle
Source§fn rebuild(&self, cx: &mut RebuildCx<'_, '_>, old: &TooltipStyle)
fn rebuild(&self, cx: &mut RebuildCx<'_, '_>, old: &TooltipStyle)
Rebuild the view.
Source§impl Style for TooltipStyle
impl Style for TooltipStyle
Source§fn default_style() -> StyleBuilder<TooltipStyle>
fn default_style() -> StyleBuilder<TooltipStyle>
The default style of the object.
Auto Trait Implementations§
impl Freeze for TooltipStyle
impl RefUnwindSafe for TooltipStyle
impl Send for TooltipStyle
impl Sync for TooltipStyle
impl Unpin for TooltipStyle
impl UnwindSafe for TooltipStyle
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