pub struct ResourceDict {
pub fonts: HashMap<String, ObjectId>,
pub xobjects: HashMap<String, ObjectId>,
pub ext_g_state: HashMap<String, ObjectId>,
pub ext_g_state_inline: HashMap<String, PdfDict>,
pub color_spaces: HashMap<String, ObjectId>,
pub color_spaces_inline: HashMap<String, PdfObject>,
pub patterns: HashMap<String, ObjectId>,
pub shadings: HashMap<String, ObjectId>,
pub shadings_inline: HashMap<String, PdfObject>,
pub properties: HashMap<String, ObjectId>,
pub properties_inline: HashMap<String, PdfDict>,
}Fields§
§fonts: HashMap<String, ObjectId>§xobjects: HashMap<String, ObjectId>§ext_g_state: HashMap<String, ObjectId>§ext_g_state_inline: HashMap<String, PdfDict>§color_spaces: HashMap<String, ObjectId>§color_spaces_inline: HashMap<String, PdfObject>Colorspace resources whose value is a direct array/name rather than a reference (common from Quartz and Ghostscript).
patterns: HashMap<String, ObjectId>§shadings: HashMap<String, ObjectId>§shadings_inline: HashMap<String, PdfObject>§properties: HashMap<String, ObjectId>/Properties (marked-content property lists, e.g. BDC /OC lookups).
properties_inline: HashMap<String, PdfDict>Trait Implementations§
Source§impl Debug for ResourceDict
impl Debug for ResourceDict
Source§impl Default for ResourceDict
impl Default for ResourceDict
Source§fn default() -> ResourceDict
fn default() -> ResourceDict
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResourceDict
impl RefUnwindSafe for ResourceDict
impl Send for ResourceDict
impl Sync for ResourceDict
impl Unpin for ResourceDict
impl UnsafeUnpin for ResourceDict
impl UnwindSafe for ResourceDict
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