pub struct LeanWorkerProcessedFile {
pub commands: Vec<LeanWorkerCommandInfo>,
pub terms: Vec<LeanWorkerTermInfo>,
pub tactics: Vec<LeanWorkerTacticInfo>,
pub names: Vec<LeanWorkerNameRef>,
pub diagnostics: LeanWorkerElabFailure,
}Expand description
FFI-safe Elab.InfoTree projection. Mirrors
lean_rs_host::process::ProcessedFile.
Fields§
§commands: Vec<LeanWorkerCommandInfo>§terms: Vec<LeanWorkerTermInfo>§tactics: Vec<LeanWorkerTacticInfo>§names: Vec<LeanWorkerNameRef>§diagnostics: LeanWorkerElabFailureTrait Implementations§
Source§impl Clone for LeanWorkerProcessedFile
impl Clone for LeanWorkerProcessedFile
Source§fn clone(&self) -> LeanWorkerProcessedFile
fn clone(&self) -> LeanWorkerProcessedFile
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 LeanWorkerProcessedFile
impl Debug for LeanWorkerProcessedFile
Source§impl<'de> Deserialize<'de> for LeanWorkerProcessedFile
impl<'de> Deserialize<'de> for LeanWorkerProcessedFile
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 LeanWorkerProcessedFile
impl PartialEq for LeanWorkerProcessedFile
Source§fn eq(&self, other: &LeanWorkerProcessedFile) -> bool
fn eq(&self, other: &LeanWorkerProcessedFile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LeanWorkerProcessedFile
impl Serialize for LeanWorkerProcessedFile
impl Eq for LeanWorkerProcessedFile
impl StructuralPartialEq for LeanWorkerProcessedFile
Auto Trait Implementations§
impl Freeze for LeanWorkerProcessedFile
impl RefUnwindSafe for LeanWorkerProcessedFile
impl Send for LeanWorkerProcessedFile
impl Sync for LeanWorkerProcessedFile
impl Unpin for LeanWorkerProcessedFile
impl UnsafeUnpin for LeanWorkerProcessedFile
impl UnwindSafe for LeanWorkerProcessedFile
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