enum CffFontKind<'a> {
Sid {
strings: Index<'a>,
private_dict: Range<u32>,
},
Cid {
fd_select: Option<FdSelect<'a>>,
fd_array: Index<'a>,
},
Cff2 {
fd_select: Option<FdSelect<'a>>,
fd_array: Index<'a>,
},
}Expand description
An SID or CID font.
Variants§
Trait Implementations§
Source§impl<'a> Clone for CffFontKind<'a>
impl<'a> Clone for CffFontKind<'a>
Source§fn clone(&self) -> CffFontKind<'a>
fn clone(&self) -> CffFontKind<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for CffFontKind<'a>
impl<'a> RefUnwindSafe for CffFontKind<'a>
impl<'a> Send for CffFontKind<'a>
impl<'a> Sync for CffFontKind<'a>
impl<'a> Unpin for CffFontKind<'a>
impl<'a> UnsafeUnpin for CffFontKind<'a>
impl<'a> UnwindSafe for CffFontKind<'a>
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