pub struct LeanWorkerKernelSummary {
pub declaration_name: String,
pub kind: String,
pub type_signature: String,
}Expand description
Projection of lean_rs_host::ProofSummary for the kernel-check success arm.
declaration_name is a dotted-path rendering of the checked declaration
(diagnostic only — multiple distinct Lean.Names can render to the same
string). kind is one of "theorem", "definition", "axiom",
"opaque", or "unsupported". type_signature is the pretty-printed
declaration type as the host’s ProofSummary emits it.
Fields§
§declaration_name: String§kind: String§type_signature: StringTrait Implementations§
Source§impl Clone for LeanWorkerKernelSummary
impl Clone for LeanWorkerKernelSummary
Source§fn clone(&self) -> LeanWorkerKernelSummary
fn clone(&self) -> LeanWorkerKernelSummary
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 LeanWorkerKernelSummary
impl Debug for LeanWorkerKernelSummary
Source§impl<'de> Deserialize<'de> for LeanWorkerKernelSummary
impl<'de> Deserialize<'de> for LeanWorkerKernelSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LeanWorkerKernelSummary
impl PartialEq for LeanWorkerKernelSummary
Source§fn eq(&self, other: &LeanWorkerKernelSummary) -> bool
fn eq(&self, other: &LeanWorkerKernelSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LeanWorkerKernelSummary
impl Serialize for LeanWorkerKernelSummary
impl Eq for LeanWorkerKernelSummary
impl StructuralPartialEq for LeanWorkerKernelSummary
Auto Trait Implementations§
impl Freeze for LeanWorkerKernelSummary
impl RefUnwindSafe for LeanWorkerKernelSummary
impl Send for LeanWorkerKernelSummary
impl Sync for LeanWorkerKernelSummary
impl Unpin for LeanWorkerKernelSummary
impl UnsafeUnpin for LeanWorkerKernelSummary
impl UnwindSafe for LeanWorkerKernelSummary
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