pub enum ParseWarningKind {
Deprecation(DeprecationWarning),
}Expand description
A warning without a span pointing to the source of the warning
Variants§
Deprecation(DeprecationWarning)
A deprecation warning
Trait Implementations§
Source§impl Clone for ParseWarningKind
impl Clone for ParseWarningKind
Source§fn clone(&self) -> ParseWarningKind
fn clone(&self) -> ParseWarningKind
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 moreSource§impl Debug for ParseWarningKind
impl Debug for ParseWarningKind
Auto Trait Implementations§
impl Freeze for ParseWarningKind
impl RefUnwindSafe for ParseWarningKind
impl Send for ParseWarningKind
impl Sync for ParseWarningKind
impl Unpin for ParseWarningKind
impl UnwindSafe for ParseWarningKind
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