pub enum CompileResult {
SettingError,
InternalError(String),
CompileError(String),
Ok(ExeCode),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Debug for CompileResult
impl Debug for CompileResult
Source§impl Display for CompileResult
impl Display for CompileResult
Source§impl From<CompileResult> for AnsAndEvalResult
impl From<CompileResult> for AnsAndEvalResult
Source§fn from(i: CompileResult) -> Self
fn from(i: CompileResult) -> Self
Converts to this type from the input type.
Source§impl From<CompileResult> for OnlyRunResult
impl From<CompileResult> for OnlyRunResult
Source§fn from(i: CompileResult) -> Self
fn from(i: CompileResult) -> Self
Converts to this type from the input type.
Source§impl From<CompileResult> for RunAndEvalResult
impl From<CompileResult> for RunAndEvalResult
Source§fn from(i: CompileResult) -> Self
fn from(i: CompileResult) -> Self
Converts to this type from the input type.
Source§impl From<CompileResult> for RunAndInteractResult
impl From<CompileResult> for RunAndInteractResult
Source§fn from(i: CompileResult) -> Self
fn from(i: CompileResult) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CompileResult
impl RefUnwindSafe for CompileResult
impl Send for CompileResult
impl Sync for CompileResult
impl Unpin for CompileResult
impl UnwindSafe for CompileResult
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