pub struct LayoutPage {
pub width: f64,
pub height: f64,
pub elements: Vec<LayoutElement>,
/* private fields */
}Expand description
A fully laid-out page ready for PDF serialization.
Fields§
§width: f64§height: f64§elements: Vec<LayoutElement>Trait Implementations§
Source§impl Clone for LayoutPage
impl Clone for LayoutPage
Source§fn clone(&self) -> LayoutPage
fn clone(&self) -> LayoutPage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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