pub struct ProofStats {
pub goals_explored: usize,
pub rules_evaluated: usize,
pub facts_checked: usize,
pub max_depth: usize,
pub total_nodes: usize,
}Expand description
Statistics about the proof
Fields§
§goals_explored: usizeTotal number of goals explored
rules_evaluated: usizeTotal number of rules evaluated
facts_checked: usizeTotal number of facts checked
max_depth: usizeMaximum depth reached
total_nodes: usizeTotal nodes in proof tree
Trait Implementations§
Source§impl Clone for ProofStats
impl Clone for ProofStats
Source§fn clone(&self) -> ProofStats
fn clone(&self) -> ProofStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProofStats
impl Debug for ProofStats
Source§impl Default for ProofStats
impl Default for ProofStats
Source§fn default() -> ProofStats
fn default() -> ProofStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProofStats
impl<'de> Deserialize<'de> for ProofStats
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
Auto Trait Implementations§
impl Freeze for ProofStats
impl RefUnwindSafe for ProofStats
impl Send for ProofStats
impl Sync for ProofStats
impl Unpin for ProofStats
impl UnwindSafe for ProofStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more