logo
pub trait FontMetrics<Length: Copy + Sub<Output = Length>> {
    fn ascent(&self) -> Length;
    fn descent(&self) -> Length;

    fn height(&self) -> Length { ... }
}

Required Methods

Provided Methods

Implementors