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