ToOwnedTable

Trait ToOwnedTable 

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

A conversion from a fully resolvable 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 T
where U: FromTableRef<T>,