pub struct MonotoneFunctionalInterpretation {
pub formula: String,
pub majorant: String,
pub is_bounded: bool,
}Expand description
Encodes Kohlenbach’s monotone functional interpretation.
Fields§
§formula: StringThe formula being interpreted.
majorant: StringThe majorizing functional (as a description string).
is_bounded: boolWhether this is a bounded (monotone) interpretation.
Implementations§
Trait Implementations§
Source§impl Clone for MonotoneFunctionalInterpretation
impl Clone for MonotoneFunctionalInterpretation
Source§fn clone(&self) -> MonotoneFunctionalInterpretation
fn clone(&self) -> MonotoneFunctionalInterpretation
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 moreAuto Trait Implementations§
impl Freeze for MonotoneFunctionalInterpretation
impl RefUnwindSafe for MonotoneFunctionalInterpretation
impl Send for MonotoneFunctionalInterpretation
impl Sync for MonotoneFunctionalInterpretation
impl Unpin for MonotoneFunctionalInterpretation
impl UnsafeUnpin for MonotoneFunctionalInterpretation
impl UnwindSafe for MonotoneFunctionalInterpretation
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