pub struct TextInputStyle {
pub font_size: f32,
pub font_family: FontFamily,
pub font_weight: FontWeight,
pub font_stretch: FontStretch,
pub font_style: FontStyle,
pub color: Color,
pub placeholder_color: Color,
pub align: TextAlign,
pub line_height: f32,
pub wrap: TextWrap,
}
Expand description
The style of a TextInput
.
Fields§
§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 the text.
placeholder_color: Color
The color of the placeholder text.
align: TextAlign
The vertical alignment of the text.
line_height: f32
The line height of the text.
wrap: TextWrap
The text wrap of the text.
Trait Implementations§
Source§impl Clone for TextInputStyle
impl Clone for TextInputStyle
Source§fn clone(&self) -> TextInputStyle
fn clone(&self) -> TextInputStyle
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 TextInputStyle
impl Rebuild for TextInputStyle
Source§fn rebuild(&self, cx: &mut RebuildCx<'_, '_>, old: &TextInputStyle)
fn rebuild(&self, cx: &mut RebuildCx<'_, '_>, old: &TextInputStyle)
Rebuild the view.
Source§impl Style for TextInputStyle
impl Style for TextInputStyle
Source§fn default_style() -> StyleBuilder<TextInputStyle>
fn default_style() -> StyleBuilder<TextInputStyle>
The default style of the object.
Auto Trait Implementations§
impl Freeze for TextInputStyle
impl RefUnwindSafe for TextInputStyle
impl Send for TextInputStyle
impl Sync for TextInputStyle
impl Unpin for TextInputStyle
impl UnwindSafe for TextInputStyle
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