pub struct LineHeightStyle {
pub alignment: LineHeightAlignment,
pub trim: LineHeightTrim,
pub mode: LineHeightMode,
}Expand description
How a line of text sits inside the height it was given.
A style that names one is laid out by AOSP’s StaticLayout rule — whole-pixel
metrics, a font that a short line height cannot shrink, and the odd pixel of
leading below the baseline. A style that names none keeps the framework’s
plain arithmetic: the box is exactly the requested height with the leading
split evenly. The two disagree by a device pixel on most faces, so a screen
that draws through a crate::DrawScope and composes Text in the same
frame has to state the same policy on both or the two sets of rows will not
line up.
Fields§
§alignment: LineHeightAlignment§trim: LineHeightTrim§mode: LineHeightModeTrait Implementations§
Source§impl Clone for LineHeightStyle
impl Clone for LineHeightStyle
Source§fn clone(&self) -> LineHeightStyle
fn clone(&self) -> LineHeightStyle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LineHeightStyle
Source§impl Debug for LineHeightStyle
impl Debug for LineHeightStyle
Source§impl Default for LineHeightStyle
impl Default for LineHeightStyle
impl Eq for LineHeightStyle
Source§impl Hash for LineHeightStyle
impl Hash for LineHeightStyle
Source§impl PartialEq for LineHeightStyle
impl PartialEq for LineHeightStyle
impl StructuralPartialEq for LineHeightStyle
Auto Trait Implementations§
impl Freeze for LineHeightStyle
impl RefUnwindSafe for LineHeightStyle
impl Send for LineHeightStyle
impl Sync for LineHeightStyle
impl Unpin for LineHeightStyle
impl UnsafeUnpin for LineHeightStyle
impl UnwindSafe for LineHeightStyle
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