pub struct MigrationEntry {
pub deprecated: &'static str,
pub replacement: &'static str,
pub confidence: f32,
pub reference: &'static str,
}Expand description
A deprecated marking migration entry.
Fields§
§deprecated: &'static strThe deprecated marking string.
replacement: &'static strThe replacement marking string.
confidence: f32Confidence score for auto-fix (0.0–1.0).
reference: &'static strPolicy reference (CAPCO section).
Auto Trait Implementations§
impl Freeze for MigrationEntry
impl RefUnwindSafe for MigrationEntry
impl Send for MigrationEntry
impl Sync for MigrationEntry
impl Unpin for MigrationEntry
impl UnsafeUnpin for MigrationEntry
impl UnwindSafe for MigrationEntry
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