Trait rlifesrc_lib::search::reason::Reason
source · pub trait Reason<R: Rule> {
const KNOWN: Self;
const DECIDED: Self;
// Required methods
fn from_cell(cell: CellRef<R>) -> Self;
fn from_sym(cell: CellRef<R>) -> Self;
fn is_decided(&self) -> bool;
fn ser(&self) -> ReasonSer;
}
Expand description
Reasons for setting a cell.
Required Associated Constants§
Required Methods§
sourcefn is_decided(&self) -> bool
fn is_decided(&self) -> bool
Decided or trying another state for generations rules.
Object Safety§
This trait is not object safe.