pub struct PageBoxes {
pub crop_box: Option<[f64; 4]>,
pub bleed_box: Option<[f64; 4]>,
pub trim_box: Option<[f64; 4]>,
pub art_box: Option<[f64; 4]>,
}Expand description
Per-page box rectangles. Each entry is Option<[llx, lly, urx, ury]>;
None means “leave the device default in place”.
Fields§
§crop_box: Option<[f64; 4]>§bleed_box: Option<[f64; 4]>§trim_box: Option<[f64; 4]>§art_box: Option<[f64; 4]>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PageBoxes
impl RefUnwindSafe for PageBoxes
impl Send for PageBoxes
impl Sync for PageBoxes
impl Unpin for PageBoxes
impl UnsafeUnpin for PageBoxes
impl UnwindSafe for PageBoxes
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