pub struct BoxMap {
pub node: HashMap<NodeId, Rect>,
pub seq: HashMap<SeqId, Rect>,
}Expand description
Geometry for each model element, resolved from the IR in points.
Fields§
§node: HashMap<NodeId, Rect>Rectangles for model nodes.
seq: HashMap<SeqId, Rect>Rectangles for model sequences.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BoxMap
impl RefUnwindSafe for BoxMap
impl Send for BoxMap
impl Sync for BoxMap
impl Unpin for BoxMap
impl UnsafeUnpin for BoxMap
impl UnwindSafe for BoxMap
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