pub struct CIDFont {
pub system_info: Dictionary,
pub font_descriptor: FontDescriptor,
pub default_width: f32,
pub widths: Vec<Primitive>,
pub cid_to_gid_map: Option<CidToGidMap>,
pub _other: Dictionary,
}Fields§
§system_info: Dictionary§font_descriptor: FontDescriptor§default_width: f32§widths: Vec<Primitive>§cid_to_gid_map: Option<CidToGidMap>§_other: DictionaryTrait Implementations§
Source§impl DataSize for CIDFont
impl DataSize for CIDFont
Source§const IS_DYNAMIC: bool = true
const IS_DYNAMIC: bool = true
If
true, the type has a heap size that can vary at runtime, depending on the actual value.Source§const STATIC_HEAP_SIZE: usize = 160usize
const STATIC_HEAP_SIZE: usize = 160usize
The amount of space a value of the type always occupies. If
IS_DYNAMIC is false, this is
the total amount of heap memory occupied by the value. Otherwise this is a lower bound.Source§fn estimate_heap_size(&self) -> usize
fn estimate_heap_size(&self) -> usize
Estimates the size of heap memory taken up by this value. Read more
Source§impl DeepClone for CIDFont
impl DeepClone for CIDFont
fn deep_clone(&self, cloner: &mut impl Cloner) -> Result<Self>
Source§impl ObjectWrite for CIDFont
impl ObjectWrite for CIDFont
Auto Trait Implementations§
impl Freeze for CIDFont
impl RefUnwindSafe for CIDFont
impl Send for CIDFont
impl Sync for CIDFont
impl Unpin for CIDFont
impl UnwindSafe for CIDFont
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more