pub struct LayoutOutput {
pub elements: Vec<Element>,
pub warnings: Vec<Warning>,
}Expand description
Layout output: the element graph in reading order (Milestone B fills this in).
Fields§
§elements: Vec<Element>Elements in reading order.
warnings: Vec<Warning>Layout-stage warnings.
Trait Implementations§
Source§impl Clone for LayoutOutput
impl Clone for LayoutOutput
Source§fn clone(&self) -> LayoutOutput
fn clone(&self) -> LayoutOutput
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 LayoutOutput
impl Debug for LayoutOutput
Source§impl<'de> Deserialize<'de> for LayoutOutput
impl<'de> Deserialize<'de> for LayoutOutput
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 LayoutOutput
impl PartialEq for LayoutOutput
Source§fn eq(&self, other: &LayoutOutput) -> bool
fn eq(&self, other: &LayoutOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LayoutOutput
impl Serialize for LayoutOutput
impl StructuralPartialEq for LayoutOutput
Auto Trait Implementations§
impl Freeze for LayoutOutput
impl RefUnwindSafe for LayoutOutput
impl Send for LayoutOutput
impl Sync for LayoutOutput
impl Unpin for LayoutOutput
impl UnsafeUnpin for LayoutOutput
impl UnwindSafe for LayoutOutput
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