pub struct RMPrinciple {
pub name: &'static str,
pub description: &'static str,
pub strength: RMStrength,
pub year: u32,
}Expand description
A combinatorial principle in the RM zoo.
Fields§
§name: &'static strShort name (e.g. “RT²_2”).
description: &'static strLong description.
strength: RMStrengthKnown RM strength.
year: u32Year first studied.
Implementations§
Source§impl RMPrinciple
impl RMPrinciple
Sourcepub fn equivalent_to(&self, system: &BigFiveSystem) -> bool
pub fn equivalent_to(&self, system: &BigFiveSystem) -> bool
Return true if this principle is equivalent (over RCA₀) to the given system.
Sourcepub fn bolzano_weierstrass() -> Self
pub fn bolzano_weierstrass() -> Self
Bolzano–Weierstrass theorem.
Trait Implementations§
Source§impl Clone for RMPrinciple
impl Clone for RMPrinciple
Source§fn clone(&self) -> RMPrinciple
fn clone(&self) -> RMPrinciple
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 RMPrinciple
impl RefUnwindSafe for RMPrinciple
impl Send for RMPrinciple
impl Sync for RMPrinciple
impl Unpin for RMPrinciple
impl UnsafeUnpin for RMPrinciple
impl UnwindSafe for RMPrinciple
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