pub enum FontQuery {
Standard(StandardFont),
Fallback(FallbackFontQuery),
}Expand description
A query for a font.
Variants§
Standard(StandardFont)
A query for one of the 14 PDF standard fonts.
Fallback(FallbackFontQuery)
A query for a font that is not embedded in the PDF file.
Note that this type of query is currently not supported, but will be implemented in the future.
Auto Trait Implementations§
impl Freeze for FontQuery
impl RefUnwindSafe for FontQuery
impl Send for FontQuery
impl Sync for FontQuery
impl Unpin for FontQuery
impl UnwindSafe for FontQuery
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