pub struct ProofCandidate {
pub id: String,
pub text: String,
}Expand description
One proof candidate to splice into an in-memory overlay.
Fields§
§id: String§text: StringTrait Implementations§
Source§impl Clone for ProofCandidate
impl Clone for ProofCandidate
Source§fn clone(&self) -> ProofCandidate
fn clone(&self) -> ProofCandidate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProofCandidate
impl Debug for ProofCandidate
impl Eq for ProofCandidate
Source§impl<'lean> IntoLean<'lean> for ProofCandidate
impl<'lean> IntoLean<'lean> for ProofCandidate
Source§fn into_lean(self, runtime: &'lean LeanRuntime) -> Obj<'lean>
fn into_lean(self, runtime: &'lean LeanRuntime) -> Obj<'lean>
Allocate (or scalar-box) a Lean representation of
self and return
the owned handle.Source§impl PartialEq for ProofCandidate
impl PartialEq for ProofCandidate
impl StructuralPartialEq for ProofCandidate
Auto Trait Implementations§
impl Freeze for ProofCandidate
impl RefUnwindSafe for ProofCandidate
impl Send for ProofCandidate
impl Sync for ProofCandidate
impl Unpin for ProofCandidate
impl UnsafeUnpin for ProofCandidate
impl UnwindSafe for ProofCandidate
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