pub struct Answer {
pub matches: Vec<String>,
pub considered: usize,
pub truncated: bool,
}Expand description
What an enumeration found.
Fields§
§matches: Vec<String>The instantiated formulas that hold, in enumeration order: shallow before deep.
considered: usizeHow many candidates were tried.
truncated: boolWhether MAX_CANDIDATES cut the enumeration short. When true, matches is a
prefix of the real answer, not the whole of it.
Trait Implementations§
impl Eq for Answer
impl StructuralPartialEq for Answer
Auto Trait Implementations§
impl Freeze for Answer
impl RefUnwindSafe for Answer
impl Send for Answer
impl Sync for Answer
impl Unpin for Answer
impl UnsafeUnpin for Answer
impl UnwindSafe for Answer
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