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<LeanWorkerKernelSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LeanWorkerKernelSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LeanWorkerKernelSummary
Source§impl PartialEq for LeanWorkerKernelSummary
impl PartialEq for LeanWorkerKernelSummary
Source§impl Serialize for LeanWorkerKernelSummary
impl Serialize for LeanWorkerKernelSummary
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 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