pub enum PostFormat {
Version10,
Version20(PostV20),
Version25(PostV25),
Version30,
}Expand description
Version-dependent trailing data.
Variants§
Version10
v1.0: no trailing data. The font claims to be the standard Macintosh 258-glyph layout.
Version20(PostV20)
v2.0: per-glyph (name_index, optional Pascal string) table.
Version25(PostV25)
v2.5 (deprecated): per-glyph signed offset into the standard Macintosh order.
Version30
v3.0: no glyph names at all.
Trait Implementations§
Source§impl Clone for PostFormat
impl Clone for PostFormat
Source§fn clone(&self) -> PostFormat
fn clone(&self) -> PostFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PostFormat
impl RefUnwindSafe for PostFormat
impl Send for PostFormat
impl Sync for PostFormat
impl Unpin for PostFormat
impl UnsafeUnpin for PostFormat
impl UnwindSafe for PostFormat
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