pub struct InternalSet {
pub property: String,
}Expand description
An internal set, defined by an internal property string.
Fields§
§property: StringImplementations§
Source§impl InternalSet
impl InternalSet
pub fn new(property: String) -> Self
Sourcepub fn is_internal(&self) -> bool
pub fn is_internal(&self) -> bool
All sets defined by first-order formulas are internal.
Sourcepub fn overflow_principle(&self) -> bool
pub fn overflow_principle(&self) -> bool
Overflow principle: if an internal set contains all standard naturals, it contains some non-standard natural.
Auto Trait Implementations§
impl Freeze for InternalSet
impl RefUnwindSafe for InternalSet
impl Send for InternalSet
impl Sync for InternalSet
impl Unpin for InternalSet
impl UnsafeUnpin for InternalSet
impl UnwindSafe for InternalSet
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