pub enum MistDiagnostic {
Error(MistDiagnosticMessage),
Warning(MistDiagnosticMessage),
Rust(CompilerMessage),
}Variants§
Trait Implementations§
Source§impl Clone for MistDiagnostic
impl Clone for MistDiagnostic
Source§fn clone(&self) -> MistDiagnostic
fn clone(&self) -> MistDiagnostic
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 moreAuto Trait Implementations§
impl Freeze for MistDiagnostic
impl RefUnwindSafe for MistDiagnostic
impl Send for MistDiagnostic
impl Sync for MistDiagnostic
impl Unpin for MistDiagnostic
impl UnsafeUnpin for MistDiagnostic
impl UnwindSafe for MistDiagnostic
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