pub enum FormalizationResultValue {
Number(f64),
TruthValue(f64),
Type(String),
Partial(String),
}Expand description
Result value from evaluating a formalization.
Variants§
Trait Implementations§
Source§impl Clone for FormalizationResultValue
impl Clone for FormalizationResultValue
Source§fn clone(&self) -> FormalizationResultValue
fn clone(&self) -> FormalizationResultValue
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 FormalizationResultValue
impl Debug for FormalizationResultValue
Source§impl PartialEq for FormalizationResultValue
impl PartialEq for FormalizationResultValue
impl StructuralPartialEq for FormalizationResultValue
Auto Trait Implementations§
impl Freeze for FormalizationResultValue
impl RefUnwindSafe for FormalizationResultValue
impl Send for FormalizationResultValue
impl Sync for FormalizationResultValue
impl Unpin for FormalizationResultValue
impl UnsafeUnpin for FormalizationResultValue
impl UnwindSafe for FormalizationResultValue
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