pub struct LeanWorkerProofAttemptRow {
pub id: String,
pub status: LeanWorkerProofAttemptStatus,
pub candidate_text: LeanWorkerRenderedInfo,
pub diagnostics: LeanWorkerElabFailure,
pub downstream_diagnostics: LeanWorkerElabFailure,
pub goals: Vec<LeanWorkerRenderedInfo>,
pub declaration: Option<LeanWorkerDeclarationTargetInfo>,
pub proof_position: Option<LeanWorkerProofPositionSummary>,
pub output_truncated: bool,
}Expand description
Per-candidate proof attempt result row.
Fields§
§id: String§status: LeanWorkerProofAttemptStatus§candidate_text: LeanWorkerRenderedInfo§diagnostics: LeanWorkerElabFailure§downstream_diagnostics: LeanWorkerElabFailure§goals: Vec<LeanWorkerRenderedInfo>§declaration: Option<LeanWorkerDeclarationTargetInfo>§proof_position: Option<LeanWorkerProofPositionSummary>§output_truncated: boolTrait Implementations§
Source§impl Clone for LeanWorkerProofAttemptRow
impl Clone for LeanWorkerProofAttemptRow
Source§fn clone(&self) -> LeanWorkerProofAttemptRow
fn clone(&self) -> LeanWorkerProofAttemptRow
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 LeanWorkerProofAttemptRow
impl Debug for LeanWorkerProofAttemptRow
Source§impl<'de> Deserialize<'de> for LeanWorkerProofAttemptRow
impl<'de> Deserialize<'de> for LeanWorkerProofAttemptRow
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LeanWorkerProofAttemptRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LeanWorkerProofAttemptRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LeanWorkerProofAttemptRow
Source§impl PartialEq for LeanWorkerProofAttemptRow
impl PartialEq for LeanWorkerProofAttemptRow
Source§fn eq(&self, other: &LeanWorkerProofAttemptRow) -> bool
fn eq(&self, other: &LeanWorkerProofAttemptRow) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LeanWorkerProofAttemptRow
impl Serialize for LeanWorkerProofAttemptRow
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for LeanWorkerProofAttemptRow
Auto Trait Implementations§
impl Freeze for LeanWorkerProofAttemptRow
impl RefUnwindSafe for LeanWorkerProofAttemptRow
impl Send for LeanWorkerProofAttemptRow
impl Sync for LeanWorkerProofAttemptRow
impl Unpin for LeanWorkerProofAttemptRow
impl UnsafeUnpin for LeanWorkerProofAttemptRow
impl UnwindSafe for LeanWorkerProofAttemptRow
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