pub enum FlowItem {
Block {
block_id: usize,
y: f32,
height: f32,
},
Table {
table_id: usize,
y: f32,
height: f32,
},
Frame {
frame_id: usize,
y: f32,
height: f32,
},
}Variants§
Auto Trait Implementations§
impl Freeze for FlowItem
impl RefUnwindSafe for FlowItem
impl Send for FlowItem
impl Sync for FlowItem
impl Unpin for FlowItem
impl UnsafeUnpin for FlowItem
impl UnwindSafe for FlowItem
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