pub struct PlateMap {
pub width: usize,
pub height: usize,
pub assignment: Vec<u32>,
pub plates: Vec<Plate>,
}Expand description
The plate assignment map (which plate each cell belongs to).
Fields§
§width: usize§height: usize§assignment: Vec<u32>Plate ID per cell.
plates: Vec<Plate>All plates.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlateMap
impl RefUnwindSafe for PlateMap
impl Send for PlateMap
impl Sync for PlateMap
impl Unpin for PlateMap
impl UnsafeUnpin for PlateMap
impl UnwindSafe for PlateMap
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