pub struct LeanWorkerElabFailure {
pub diagnostics: Vec<LeanWorkerDiagnostic>,
pub truncated: bool,
}Expand description
Diagnostic payload returned alongside meta and elaboration failures.
truncated indicates the diagnostic projection hit the host byte budget
and later messages were dropped.
Fields§
§diagnostics: Vec<LeanWorkerDiagnostic>§truncated: boolTrait Implementations§
Source§impl Clone for LeanWorkerElabFailure
impl Clone for LeanWorkerElabFailure
Source§fn clone(&self) -> LeanWorkerElabFailure
fn clone(&self) -> LeanWorkerElabFailure
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 LeanWorkerElabFailure
impl Debug for LeanWorkerElabFailure
Source§impl<'de> Deserialize<'de> for LeanWorkerElabFailure
impl<'de> Deserialize<'de> for LeanWorkerElabFailure
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 LeanWorkerElabFailure
impl PartialEq for LeanWorkerElabFailure
Source§fn eq(&self, other: &LeanWorkerElabFailure) -> bool
fn eq(&self, other: &LeanWorkerElabFailure) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LeanWorkerElabFailure
impl Serialize for LeanWorkerElabFailure
impl Eq for LeanWorkerElabFailure
impl StructuralPartialEq for LeanWorkerElabFailure
Auto Trait Implementations§
impl Freeze for LeanWorkerElabFailure
impl RefUnwindSafe for LeanWorkerElabFailure
impl Send for LeanWorkerElabFailure
impl Sync for LeanWorkerElabFailure
impl Unpin for LeanWorkerElabFailure
impl UnsafeUnpin for LeanWorkerElabFailure
impl UnwindSafe for LeanWorkerElabFailure
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