pub enum CompileOutcome {
Ok {
src: PathBuf,
dst: PathBuf,
diag_count: usize,
},
LexError {
src: PathBuf,
},
Errors {
src: PathBuf,
count: usize,
},
IoError {
src: PathBuf,
msg: String,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompileOutcome
impl RefUnwindSafe for CompileOutcome
impl Send for CompileOutcome
impl Sync for CompileOutcome
impl Unpin for CompileOutcome
impl UnsafeUnpin for CompileOutcome
impl UnwindSafe for CompileOutcome
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