pub trait LineHeightUtilities {
// Required method
fn line_height(self, height: LineHeight) -> Self;
}
Expand description
Trait for adding line height utilities to a class builder
Required Methods§
Sourcefn line_height(self, height: LineHeight) -> Self
fn line_height(self, height: LineHeight) -> Self
Set line height
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.