Trait FontTool

Source
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

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.

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§