pub struct CompilationResult {
pub ok: bool,
pub project: Project,
pub errors: Vec<CompilationError>,
pub warnings: Vec<CompilationWarning>,
}
Fields§
§ok: bool
§project: Project
§errors: Vec<CompilationError>
§warnings: Vec<CompilationWarning>
Trait Implementations§
Source§impl Debug for CompilationResult
impl Debug for CompilationResult
Source§impl PartialEq for CompilationResult
impl PartialEq for CompilationResult
impl StructuralPartialEq for CompilationResult
Auto Trait Implementations§
impl Freeze for CompilationResult
impl RefUnwindSafe for CompilationResult
impl Send for CompilationResult
impl Sync for CompilationResult
impl Unpin for CompilationResult
impl UnwindSafe for CompilationResult
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