enum HinterKind {
None,
Glyf(Box<HintInstance>),
Cff(Vec<Subfont>),
Auto(Instance),
}
Variants§
None
Represents a hinting instance that is associated with an empty outline collection.
Glyf(Box<HintInstance>)
Cff(Vec<Subfont>)
Auto(Instance)
Trait Implementations§
Source§impl Clone for HinterKind
impl Clone for HinterKind
Source§fn clone(&self) -> HinterKind
fn clone(&self) -> HinterKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for HinterKind
impl RefUnwindSafe for HinterKind
impl Send for HinterKind
impl Sync for HinterKind
impl Unpin for HinterKind
impl UnwindSafe for HinterKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more