pub struct FlowElements {
pub blocks: Vec<(usize, BlockLayoutParams)>,
pub tables: Vec<(usize, TableLayoutParams)>,
pub frames: Vec<(usize, FrameLayoutParams)>,
}Expand description
Converted flow elements, ordered by their position in the flow.
Fields§
§blocks: Vec<(usize, BlockLayoutParams)>(flow_index, params)
tables: Vec<(usize, TableLayoutParams)>§frames: Vec<(usize, FrameLayoutParams)>Auto Trait Implementations§
impl Freeze for FlowElements
impl RefUnwindSafe for FlowElements
impl Send for FlowElements
impl Sync for FlowElements
impl Unpin for FlowElements
impl UnsafeUnpin for FlowElements
impl UnwindSafe for FlowElements
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