pub struct LayoutPage {
pub width: f64,
pub height: f64,
pub nodes: Vec<LayoutNode>,
}Expand description
A single page in the layout output.
Fields§
§width: f64§height: f64§nodes: Vec<LayoutNode>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LayoutPage
impl RefUnwindSafe for LayoutPage
impl Send for LayoutPage
impl Sync for LayoutPage
impl Unpin for LayoutPage
impl UnsafeUnpin for LayoutPage
impl UnwindSafe for LayoutPage
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