pub trait ToOwnedTable<T>: ToOwnedObj<T> {
    // Required method
    fn to_owned_table(&self) -> T;
}
Expand description

A conversion from a fully resolveable parsed font table to its owned equivalent.

As with ToOwnedObj, you should not need to implement this manually.

Required Methods§

source

fn to_owned_table(&self) -> T

Implementors§

source§

impl<U, T> ToOwnedTable<U> for Twhere U: FromTableRef<T>,