pub struct PredefinedCMapInfo {
pub name: String,
pub registry: String,
pub ordering: String,
pub writing_mode: u8,
pub is_identity: bool,
}Expand description
Information about a predefined CMap encoding.
Fields§
§name: StringThe full CMap name (e.g., “Adobe-Japan1-6”).
registry: StringRegistry (e.g., “Adobe”).
ordering: StringOrdering (e.g., “Japan1”).
writing_mode: u8Writing mode: 0 = horizontal, 1 = vertical.
is_identity: boolWhether this is an Identity CMap.
Trait Implementations§
Source§impl Clone for PredefinedCMapInfo
impl Clone for PredefinedCMapInfo
Source§fn clone(&self) -> PredefinedCMapInfo
fn clone(&self) -> PredefinedCMapInfo
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 Debug for PredefinedCMapInfo
impl Debug for PredefinedCMapInfo
Source§impl PartialEq for PredefinedCMapInfo
impl PartialEq for PredefinedCMapInfo
impl StructuralPartialEq for PredefinedCMapInfo
Auto Trait Implementations§
impl Freeze for PredefinedCMapInfo
impl RefUnwindSafe for PredefinedCMapInfo
impl Send for PredefinedCMapInfo
impl Sync for PredefinedCMapInfo
impl Unpin for PredefinedCMapInfo
impl UnsafeUnpin for PredefinedCMapInfo
impl UnwindSafe for PredefinedCMapInfo
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