pub trait FontTool {
    // Required methods
    fn reset(&mut self) -> &Self;
    fn no_reset(self) -> Self;
    fn none_font(&self) -> Self;
}

Required Methods§

source

fn reset(&mut self) -> &Self

source

fn no_reset(self) -> Self

source

fn none_font(&self) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FontTool for String

source§

fn reset(&mut self) -> &Self

source§

fn no_reset(self) -> Self

source§

fn none_font(&self) -> Self

Implementors§