pub struct Resources<'a> {
pub fonts: ResDictRes<Font<'a>>,
pub x_objects: ResDictRes<XObject>,
pub proc_sets: Vec<ProcSet>,
}Expand description
The resources of a page
Fields§
§fonts: ResDictRes<Font<'a>>A dict of font resources
x_objects: ResDictRes<XObject>A dict of embedded object resources
proc_sets: Vec<ProcSet>A set of valid procedures
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Resources<'a>
impl<'a> RefUnwindSafe for Resources<'a>
impl<'a> Send for Resources<'a>
impl<'a> Sync for Resources<'a>
impl<'a> Unpin for Resources<'a>
impl<'a> UnwindSafe for Resources<'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