pub struct Resolved<'a> {
pub sections: Vec<Section<'a>>,
pub leftovers: Vec<&'a Field>,
}Expand description
A whole layout resolved against one body: the render path, in one call.
Fields§
§sections: Vec<Section<'a>>§leftovers: Vec<&'a Field>The fields no group named, in registry order — empty for an exhaustive layout. A morph slot whose parameter was named is not among them; it is drawn on that parameter’s control.
Auto Trait Implementations§
impl<'a> Freeze for Resolved<'a>
impl<'a> RefUnwindSafe for Resolved<'a>
impl<'a> Send for Resolved<'a>
impl<'a> Sync for Resolved<'a>
impl<'a> Unpin for Resolved<'a>
impl<'a> UnsafeUnpin for Resolved<'a>
impl<'a> UnwindSafe for Resolved<'a>
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