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 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 ==.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