pub struct FormalizationEvaluation {
pub computable: bool,
pub formalization_level: u8,
pub unknowns: Vec<String>,
pub result: FormalizationResultValue,
}Expand description
Evaluation result for the meta-expression adapter.
Fields§
§computable: bool§formalization_level: u8§unknowns: Vec<String>§result: FormalizationResultValueTrait Implementations§
Source§impl Clone for FormalizationEvaluation
impl Clone for FormalizationEvaluation
Source§fn clone(&self) -> FormalizationEvaluation
fn clone(&self) -> FormalizationEvaluation
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 FormalizationEvaluation
impl Debug for FormalizationEvaluation
Source§impl PartialEq for FormalizationEvaluation
impl PartialEq for FormalizationEvaluation
impl StructuralPartialEq for FormalizationEvaluation
Auto Trait Implementations§
impl Freeze for FormalizationEvaluation
impl RefUnwindSafe for FormalizationEvaluation
impl Send for FormalizationEvaluation
impl Sync for FormalizationEvaluation
impl Unpin for FormalizationEvaluation
impl UnsafeUnpin for FormalizationEvaluation
impl UnwindSafe for FormalizationEvaluation
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