Struct cosmic_text::Metrics
source · pub struct Metrics {
pub font_size: f32,
pub line_height: f32,
}Expand description
Metrics of text
Fields§
§font_size: f32Font size in pixels
line_height: f32Line height in pixels
Implementations§
Trait Implementations§
source§impl From<CacheMetrics> for Metrics
impl From<CacheMetrics> for Metrics
source§fn from(metrics: CacheMetrics) -> Self
fn from(metrics: CacheMetrics) -> Self
Converts to this type from the input type.
source§impl From<Metrics> for CacheMetrics
impl From<Metrics> for CacheMetrics
source§impl PartialEq for Metrics
impl PartialEq for Metrics
impl Copy for Metrics
impl StructuralPartialEq for Metrics
Auto Trait Implementations§
impl Freeze for Metrics
impl RefUnwindSafe for Metrics
impl Send for Metrics
impl Sync for Metrics
impl Unpin for Metrics
impl UnwindSafe for Metrics
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more