pub struct CompileReport {
pub zones_compiled: Vec<ZoneReport>,
pub links_written: Vec<LinkReport>,
pub diagnostics: Vec<Diagnostic>,
}Expand description
Structured, deterministic summary of a compile run.
Fields§
§zones_compiled: Vec<ZoneReport>§links_written: Vec<LinkReport>§diagnostics: Vec<Diagnostic>Trait Implementations§
Source§impl Clone for CompileReport
impl Clone for CompileReport
Source§fn clone(&self) -> CompileReport
fn clone(&self) -> CompileReport
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 CompileReport
impl Debug for CompileReport
Source§impl Default for CompileReport
impl Default for CompileReport
Source§fn default() -> CompileReport
fn default() -> CompileReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CompileReport
impl RefUnwindSafe for CompileReport
impl Send for CompileReport
impl Sync for CompileReport
impl Unpin for CompileReport
impl UnsafeUnpin for CompileReport
impl UnwindSafe for CompileReport
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