pub trait FontDataClone {
    fn clone_font_data(&self) -> Box<dyn FontData>;
}
Expand description

Helper trait for cloning boxed FontData implementors.

Required Methods

Clones this font data and returns a box with the cloned data.

Implementors