pub struct CompileErrorList {
pub filename: String,
pub errors: Vec<CompileError>,
}Fields§
§filename: String§errors: Vec<CompileError>Implementations§
Trait Implementations§
Source§impl Clone for CompileErrorList
impl Clone for CompileErrorList
Source§fn clone(&self) -> CompileErrorList
fn clone(&self) -> CompileErrorList
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CompileErrorList
impl RefUnwindSafe for CompileErrorList
impl Send for CompileErrorList
impl Sync for CompileErrorList
impl Unpin for CompileErrorList
impl UnwindSafe for CompileErrorList
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