pub struct BBox {
pub x0: f64,
pub top: f64,
pub x1: f64,
pub bottom: f64,
}Expand description
Bounding box with top-left origin coordinate system.
Coordinates follow pdfplumber convention:
x0: left edgetop: top edge (distance from top of page)x1: right edgebottom: bottom edge (distance from top of page)
Fields§
§x0: f64Left edge x coordinate.
top: f64Top edge y coordinate (distance from top of page).
x1: f64Right edge x coordinate.
bottom: f64Bottom edge y coordinate (distance from top of page).
Implementations§
Trait Implementations§
impl Copy for BBox
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