pub enum ParseDiagnosticKind {
Error(ParseErrorKind),
Warning(ParseWarningKind),
}Variants§
Error(ParseErrorKind)
Warning(ParseWarningKind)
Trait Implementations§
Source§impl Clone for ParseDiagnosticKind
impl Clone for ParseDiagnosticKind
Source§fn clone(&self) -> ParseDiagnosticKind
fn clone(&self) -> ParseDiagnosticKind
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 ParseDiagnosticKind
impl RefUnwindSafe for ParseDiagnosticKind
impl Send for ParseDiagnosticKind
impl Sync for ParseDiagnosticKind
impl Unpin for ParseDiagnosticKind
impl UnwindSafe for ParseDiagnosticKind
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