pub struct PageInfo {
pub width: f64,
pub height: f64,
pub content_x: f64,
pub content_y: f64,
pub content_width: f64,
pub content_height: f64,
pub elements: Vec<ElementInfo>,
}Expand description
Layout metadata for a single page.
Fields§
§width: f64§height: f64§content_x: f64§content_y: f64§content_width: f64§content_height: f64§elements: Vec<ElementInfo>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PageInfo
impl RefUnwindSafe for PageInfo
impl Send for PageInfo
impl Sync for PageInfo
impl Unpin for PageInfo
impl UnsafeUnpin for PageInfo
impl UnwindSafe for PageInfo
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