pub struct CompileOutput {
pub ir: Option<IrProgram>,
pub diagnostics: Vec<Diagnostic>,
pub warnings: Vec<Diagnostic>,
}Fields§
§ir: Option<IrProgram>§diagnostics: Vec<Diagnostic>§warnings: Vec<Diagnostic>Non-fatal diagnostics (deprecations, style); never block compilation.
Trait Implementations§
Source§impl Clone for CompileOutput
impl Clone for CompileOutput
Source§fn clone(&self) -> CompileOutput
fn clone(&self) -> CompileOutput
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 CompileOutput
impl Debug for CompileOutput
impl Eq for CompileOutput
Source§impl PartialEq for CompileOutput
impl PartialEq for CompileOutput
impl StructuralPartialEq for CompileOutput
Auto Trait Implementations§
impl Freeze for CompileOutput
impl RefUnwindSafe for CompileOutput
impl Send for CompileOutput
impl Sync for CompileOutput
impl Unpin for CompileOutput
impl UnsafeUnpin for CompileOutput
impl UnwindSafe for CompileOutput
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