pub struct BackendOutput {
pub files: Vec<OutputFile>,
pub diagnostics: Vec<Diagnostic>,
}Expand description
The output produced by a backend.
Fields§
§files: Vec<OutputFile>One or more output files.
diagnostics: Vec<Diagnostic>Non-fatal diagnostics.
Trait Implementations§
Source§impl Clone for BackendOutput
impl Clone for BackendOutput
Source§fn clone(&self) -> BackendOutput
fn clone(&self) -> BackendOutput
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 BackendOutput
impl Debug for BackendOutput
Auto Trait Implementations§
impl Freeze for BackendOutput
impl RefUnwindSafe for BackendOutput
impl Send for BackendOutput
impl Sync for BackendOutput
impl Unpin for BackendOutput
impl UnsafeUnpin for BackendOutput
impl UnwindSafe for BackendOutput
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