enum MappingKind {
None = 0,
UnicodeBmp = 1,
UnicodeFull = 2,
Symbol = 3,
}
Expand description
The mapping kind of a cmap subtable.
The ordering is significant and determines the priority of subtable selection (greater is better).
Variants§
Trait Implementations§
Source§impl Clone for MappingKind
impl Clone for MappingKind
Source§fn clone(&self) -> MappingKind
fn clone(&self) -> MappingKind
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 moreSource§impl PartialEq for MappingKind
impl PartialEq for MappingKind
Source§impl PartialOrd for MappingKind
impl PartialOrd for MappingKind
impl Copy for MappingKind
impl StructuralPartialEq for MappingKind
Auto Trait Implementations§
impl Freeze for MappingKind
impl RefUnwindSafe for MappingKind
impl Send for MappingKind
impl Sync for MappingKind
impl Unpin for MappingKind
impl UnwindSafe for MappingKind
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