pub struct LayoutDumpEntry {
pub page_num: u32,
pub page_height: f64,
pub used_height: f64,
pub overflow_to_next: bool,
pub first_overflow_element: Option<String>,
}Expand description
One page entry in the optional layout dump.
Fields§
§page_num: u32page_num.
page_height: f64page_height.
used_height: f64used_height.
overflow_to_next: booloverflow_to_next.
first_overflow_element: Option<String>first_overflow_element.
Trait Implementations§
Source§impl Clone for LayoutDumpEntry
impl Clone for LayoutDumpEntry
Source§fn clone(&self) -> LayoutDumpEntry
fn clone(&self) -> LayoutDumpEntry
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 LayoutDumpEntry
impl RefUnwindSafe for LayoutDumpEntry
impl Send for LayoutDumpEntry
impl Sync for LayoutDumpEntry
impl Unpin for LayoutDumpEntry
impl UnsafeUnpin for LayoutDumpEntry
impl UnwindSafe for LayoutDumpEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more