pub enum CharstringKind {
Type1,
Type2,
}Expand description
The type of a PostScript charstring.
Variants§
Type1
Type1 charstring.
See reference at https://adobe-type-tools.github.io/font-tech-notes/pdfs/T1_SPEC.pdf.
Type2
Type2 charstring.
See reference at https://adobe-type-tools.github.io/font-tech-notes/pdfs/5177.Type2.pdf.
Trait Implementations§
Source§impl Clone for CharstringKind
impl Clone for CharstringKind
Source§fn clone(&self) -> CharstringKind
fn clone(&self) -> CharstringKind
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 CharstringKind
impl Debug for CharstringKind
Source§impl PartialEq for CharstringKind
impl PartialEq for CharstringKind
impl Copy for CharstringKind
impl Eq for CharstringKind
impl StructuralPartialEq for CharstringKind
Auto Trait Implementations§
impl Freeze for CharstringKind
impl RefUnwindSafe for CharstringKind
impl Send for CharstringKind
impl Sync for CharstringKind
impl Unpin for CharstringKind
impl UnsafeUnpin for CharstringKind
impl UnwindSafe for CharstringKind
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