pub struct CheckOutput {
pub diagnostics: Vec<Diagnostic>,
pub metadata: EngineMetadata,
}Expand description
Result of the check operation.
Fields§
§diagnostics: Vec<Diagnostic>Compiler, theme, and layout diagnostics in deterministic order.
metadata: EngineMetadataVersions that identify the exact operation implementation and inputs.
Trait Implementations§
Source§impl Clone for CheckOutput
impl Clone for CheckOutput
Source§fn clone(&self) -> CheckOutput
fn clone(&self) -> CheckOutput
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 CheckOutput
impl Debug for CheckOutput
impl Eq for CheckOutput
Source§impl PartialEq for CheckOutput
impl PartialEq for CheckOutput
impl StructuralPartialEq for CheckOutput
Auto Trait Implementations§
impl Freeze for CheckOutput
impl RefUnwindSafe for CheckOutput
impl Send for CheckOutput
impl Sync for CheckOutput
impl Unpin for CheckOutput
impl UnsafeUnpin for CheckOutput
impl UnwindSafe for CheckOutput
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