pub struct BBox {
pub x0: f32,
pub y0: f32,
pub x1: f32,
pub y1: f32,
}Expand description
A device-space box: y grows upward, as in PDF user space.
Fields§
§x0: f32§y0: f32§x1: f32§y1: f32Trait Implementations§
impl StructuralPartialEq for BBox
Auto Trait Implementations§
impl Freeze for BBox
impl RefUnwindSafe for BBox
impl Send for BBox
impl Sync for BBox
impl Unpin for BBox
impl UnsafeUnpin for BBox
impl UnwindSafe for BBox
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