pub struct LayoutProfilePage {
pub page_height: f64,
pub used_height: f64,
pub overflow_to_next: bool,
pub first_overflow_element: Option<String>,
}Expand description
Minimal vertical-space profiling metadata for one laid out page.
Fields§
§page_height: f64Page height.
used_height: f64Used height.
overflow_to_next: boolWhether content overflowed to the next page.
first_overflow_element: Option<String>First element that overflowed.
Trait Implementations§
Source§impl Clone for LayoutProfilePage
impl Clone for LayoutProfilePage
Source§fn clone(&self) -> LayoutProfilePage
fn clone(&self) -> LayoutProfilePage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LayoutProfilePage
impl RefUnwindSafe for LayoutProfilePage
impl Send for LayoutProfilePage
impl Sync for LayoutProfilePage
impl Unpin for LayoutProfilePage
impl UnsafeUnpin for LayoutProfilePage
impl UnwindSafe for LayoutProfilePage
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