pub struct Page<'a> {
pub media_box: Rectangle<i32>,
pub resources: Resources<'a>,
pub contents: Vec<u8>,
}Expand description
A single page
Fields§
§media_box: Rectangle<i32>The dimensions of the page
resources: Resources<'a>The resource used within the page
contents: Vec<u8>The content stream of the page
Auto Trait Implementations§
impl<'a> Freeze for Page<'a>
impl<'a> RefUnwindSafe for Page<'a>
impl<'a> Send for Page<'a>
impl<'a> Sync for Page<'a>
impl<'a> Unpin for Page<'a>
impl<'a> UnwindSafe for Page<'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