#[repr(C)]pub struct Boundary {
pub selector: String,
pub index: u32,
pub page: u32,
pub x: f64,
pub y: f64,
pub width: f64,
pub height: f64,
}Expand description
Element boundary in rendered PDF
Fields§
§selector: StringCSS selector that matched
index: u32Match index (0-based)
page: u32Page number (1-based)
x: f64X coordinate in PDF points
y: f64Y coordinate in PDF points
width: f64Width in PDF points
height: f64Height in PDF points
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Boundary
impl RefUnwindSafe for Boundary
impl Send for Boundary
impl Sync for Boundary
impl Unpin for Boundary
impl UnwindSafe for Boundary
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