pub struct KnownCell {
pub coord: Coord,
pub state: State,
}
Expand description
A cell whose state is known before the search.
Fields§
§coord: Coord
The coordinates of the set cell.
state: State
The state.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for KnownCell
impl<'de> Deserialize<'de> for KnownCell
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for KnownCell
impl Eq for KnownCell
impl StructuralPartialEq for KnownCell
Auto Trait Implementations§
impl Freeze for KnownCell
impl RefUnwindSafe for KnownCell
impl Send for KnownCell
impl Sync for KnownCell
impl Unpin for KnownCell
impl UnwindSafe for KnownCell
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