pub struct LayoutReport {
pub engine: String,
pub viewport: Viewport,
pub observations: Vec<LayoutObservation>,
pub unintended_horizontal_overflow: bool,
}Fields§
§engine: String§viewport: Viewport§observations: Vec<LayoutObservation>§unintended_horizontal_overflow: boolImplementations§
Trait Implementations§
Source§impl Clone for LayoutReport
impl Clone for LayoutReport
Source§fn clone(&self) -> LayoutReport
fn clone(&self) -> LayoutReport
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 LayoutReport
impl Debug for LayoutReport
Source§impl<'de> Deserialize<'de> for LayoutReport
impl<'de> Deserialize<'de> for LayoutReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LayoutReport
impl PartialEq for LayoutReport
Source§impl Serialize for LayoutReport
impl Serialize for LayoutReport
impl StructuralPartialEq for LayoutReport
Auto Trait Implementations§
impl Freeze for LayoutReport
impl RefUnwindSafe for LayoutReport
impl Send for LayoutReport
impl Sync for LayoutReport
impl Unpin for LayoutReport
impl UnsafeUnpin for LayoutReport
impl UnwindSafe for LayoutReport
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