pub struct LeanWorkerElabResult {
pub success: bool,
pub diagnostics: Vec<LeanWorkerDiagnostic>,
pub truncated: bool,
}Expand description
Serializable elaboration result returned over the worker boundary.
Fields§
§success: bool§diagnostics: Vec<LeanWorkerDiagnostic>§truncated: boolTrait Implementations§
Source§impl Clone for LeanWorkerElabResult
impl Clone for LeanWorkerElabResult
Source§fn clone(&self) -> LeanWorkerElabResult
fn clone(&self) -> LeanWorkerElabResult
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 LeanWorkerElabResult
impl Debug for LeanWorkerElabResult
Source§impl PartialEq for LeanWorkerElabResult
impl PartialEq for LeanWorkerElabResult
Source§fn eq(&self, other: &LeanWorkerElabResult) -> bool
fn eq(&self, other: &LeanWorkerElabResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LeanWorkerElabResult
impl StructuralPartialEq for LeanWorkerElabResult
Auto Trait Implementations§
impl Freeze for LeanWorkerElabResult
impl RefUnwindSafe for LeanWorkerElabResult
impl Send for LeanWorkerElabResult
impl Sync for LeanWorkerElabResult
impl Unpin for LeanWorkerElabResult
impl UnsafeUnpin for LeanWorkerElabResult
impl UnwindSafe for LeanWorkerElabResult
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