pub struct SkippedFix {
pub code: String,
pub description: String,
pub reason: String,
}Expand description
A fix that was skipped by apply_fixes.
Fields§
§code: StringRule code of the diagnostic whose fix was skipped.
description: StringThe fix’s human-readable description.
reason: StringWhy the fix was not applied.
Trait Implementations§
Source§impl Clone for SkippedFix
impl Clone for SkippedFix
Source§fn clone(&self) -> SkippedFix
fn clone(&self) -> SkippedFix
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 moreSource§impl Debug for SkippedFix
impl Debug for SkippedFix
Source§impl<'de> Deserialize<'de> for SkippedFix
impl<'de> Deserialize<'de> for SkippedFix
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SkippedFix
impl RefUnwindSafe for SkippedFix
impl Send for SkippedFix
impl Sync for SkippedFix
impl Unpin for SkippedFix
impl UnsafeUnpin for SkippedFix
impl UnwindSafe for SkippedFix
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