pub struct LayoutProfile {
pub pages: Vec<LayoutProfilePage>,
}Expand description
Per-page pagination diagnostics collected only on opt-in code paths.
Fields§
§pages: Vec<LayoutProfilePage>Per-page profile data.
Trait Implementations§
Source§impl Clone for LayoutProfile
impl Clone for LayoutProfile
Source§fn clone(&self) -> LayoutProfile
fn clone(&self) -> LayoutProfile
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 moreSource§impl Debug for LayoutProfile
impl Debug for LayoutProfile
Source§impl Default for LayoutProfile
impl Default for LayoutProfile
Source§fn default() -> LayoutProfile
fn default() -> LayoutProfile
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LayoutProfile
impl RefUnwindSafe for LayoutProfile
impl Send for LayoutProfile
impl Sync for LayoutProfile
impl Unpin for LayoutProfile
impl UnsafeUnpin for LayoutProfile
impl UnwindSafe for LayoutProfile
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