pub enum Cell {
Block(BlockKind),
Empty,
Outside,
}
Expand description
A state of cells in the field.
Variants§
Block(BlockKind)
Indicates there is a block in the cell. The kind is included as the value.
Empty
Indicates there is no block in the cell.
Outside
Indicates the specified cell is out of the field.
Trait Implementations§
impl Copy for Cell
impl Eq for Cell
impl StructuralPartialEq for Cell
Auto Trait Implementations§
impl Freeze for Cell
impl RefUnwindSafe for Cell
impl Send for Cell
impl Sync for Cell
impl Unpin for Cell
impl UnwindSafe for Cell
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