pub struct RMA0System {
pub statement: &'static str,
pub kind: RCA0AxiomKind,
pub is_valid: bool,
}Expand description
A tagged statement together with the RCA₀ axiom kind it falls under.
Fields§
§statement: &'static strHuman-readable description of the statement.
kind: RCA0AxiomKindThe axiom kind.
is_valid: boolWhether this instance is valid (for illustrative purposes).
Implementations§
Source§impl RMA0System
impl RMA0System
Sourcepub fn sigma01_comprehension_for(predicate: &'static str) -> Self
pub fn sigma01_comprehension_for(predicate: &'static str) -> Self
Produce the standard Σ⁰_1-comprehension instance for a given predicate name.
Trait Implementations§
Source§impl Clone for RMA0System
impl Clone for RMA0System
Source§fn clone(&self) -> RMA0System
fn clone(&self) -> RMA0System
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 RMA0System
impl RefUnwindSafe for RMA0System
impl Send for RMA0System
impl Sync for RMA0System
impl Unpin for RMA0System
impl UnsafeUnpin for RMA0System
impl UnwindSafe for RMA0System
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