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.