pub enum CMapType {
CIDMap,
ToUnicode,
Predefined(String),
}Expand description
CMap type enumeration
Variants§
CIDMap
Maps character codes to CIDs (Character IDs)
ToUnicode
Maps character codes to Unicode values
Predefined(String)
Predefined CMap (e.g., Identity-H, Identity-V)
Trait Implementations§
impl StructuralPartialEq for CMapType
Auto Trait Implementations§
impl Freeze for CMapType
impl RefUnwindSafe for CMapType
impl Send for CMapType
impl Sync for CMapType
impl Unpin for CMapType
impl UnsafeUnpin for CMapType
impl UnwindSafe for CMapType
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