pub struct CidSystemInfo {
pub registry: String,
pub ordering: String,
pub supplement: i64,
}Expand description
CID system information from the /CIDSystemInfo dictionary.
Fields§
§registry: StringRegistry (e.g., “Adobe”).
ordering: StringOrdering (e.g., “Japan1”, “GB1”, “CNS1”, “Korea1”).
supplement: i64Supplement number.
Implementations§
Source§impl CidSystemInfo
impl CidSystemInfo
Sourcepub fn is_adobe_cjk(&self) -> bool
pub fn is_adobe_cjk(&self) -> bool
Check if this is an Adobe CJK system.
Trait Implementations§
Source§impl Clone for CidSystemInfo
impl Clone for CidSystemInfo
Source§fn clone(&self) -> CidSystemInfo
fn clone(&self) -> CidSystemInfo
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 CidSystemInfo
impl Debug for CidSystemInfo
Source§impl PartialEq for CidSystemInfo
impl PartialEq for CidSystemInfo
impl StructuralPartialEq for CidSystemInfo
Auto Trait Implementations§
impl Freeze for CidSystemInfo
impl RefUnwindSafe for CidSystemInfo
impl Send for CidSystemInfo
impl Sync for CidSystemInfo
impl Unpin for CidSystemInfo
impl UnsafeUnpin for CidSystemInfo
impl UnwindSafe for CidSystemInfo
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