pub struct EffectiveBound {
pub original_theorem: String,
pub extracted_bound: String,
pub bound_type: BoundType,
pub dependencies: Vec<String>,
}Expand description
Effective bound extraction result.
Fields§
§original_theorem: String§extracted_bound: String§bound_type: BoundType§dependencies: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for EffectiveBound
impl Clone for EffectiveBound
Source§fn clone(&self) -> EffectiveBound
fn clone(&self) -> EffectiveBound
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 EffectiveBound
impl RefUnwindSafe for EffectiveBound
impl Send for EffectiveBound
impl Sync for EffectiveBound
impl Unpin for EffectiveBound
impl UnsafeUnpin for EffectiveBound
impl UnwindSafe for EffectiveBound
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