pub struct RamseyBound {
pub name: String,
pub lower_bound: u64,
pub upper_bound: Option<u64>,
pub proof_system: String,
}Expand description
Ramsey theory bounds from proof mining.
Fields§
§name: String§lower_bound: u64§upper_bound: Option<u64>§proof_system: StringImplementations§
Trait Implementations§
Source§impl Clone for RamseyBound
impl Clone for RamseyBound
Source§fn clone(&self) -> RamseyBound
fn clone(&self) -> RamseyBound
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 RamseyBound
impl RefUnwindSafe for RamseyBound
impl Send for RamseyBound
impl Sync for RamseyBound
impl Unpin for RamseyBound
impl UnsafeUnpin for RamseyBound
impl UnwindSafe for RamseyBound
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