pub struct IgnoreWarning {
pub line: usize,
pub message: String,
pub fixes: Vec<Fix>,
}Expand description
A warning generated from parsing ignore comments
Fields§
§line: usizeLine number where the warning occurred
message: StringWarning message
fixes: Vec<Fix>Fixes for the warning
Trait Implementations§
Source§impl Clone for IgnoreWarning
impl Clone for IgnoreWarning
Source§fn clone(&self) -> IgnoreWarning
fn clone(&self) -> IgnoreWarning
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 IgnoreWarning
impl RefUnwindSafe for IgnoreWarning
impl Send for IgnoreWarning
impl Sync for IgnoreWarning
impl Unpin for IgnoreWarning
impl UnwindSafe for IgnoreWarning
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