pub enum RemediationKind {
KeyOrder,
MigratedTimestamp,
MigratedCitations,
AddedTitle(String),
AddedGenerated,
AddedTopHeading(String),
AddedComputationLanguage(String),
ConsolidatedLogDates(String),
CleanedWhitespace,
}Expand description
What kind of remediation or migration was applied.
Variants§
KeyOrder
Reordered frontmatter keys to canonical order (L18).
MigratedTimestamp
Migrated legacy v0.1 timestamp to generated or removed redundant timestamp (L5).
MigratedCitations
Migrated legacy v0.1 # Citations body section to frontmatter sources (L6).
AddedTitle(String)
Added missing title inferred from filename (L1).
AddedGenerated
Added missing generated block (L3).
AddedTopHeading(String)
Added missing top-level # <title> heading to document body (L8).
AddedComputationLanguage(String)
Tagged unlabeled # Computation code block with runtime language (L26).
ConsolidatedLogDates(String)
Consolidated duplicate date headings in log.md (L27).
CleanedWhitespace
Stripped trailing whitespace and normalized excess blank lines (L28).
Trait Implementations§
Source§impl Clone for RemediationKind
impl Clone for RemediationKind
Source§fn clone(&self) -> RemediationKind
fn clone(&self) -> RemediationKind
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 RemediationKind
impl Debug for RemediationKind
impl Eq for RemediationKind
Source§impl PartialEq for RemediationKind
impl PartialEq for RemediationKind
impl StructuralPartialEq for RemediationKind
Auto Trait Implementations§
impl Freeze for RemediationKind
impl RefUnwindSafe for RemediationKind
impl Send for RemediationKind
impl Sync for RemediationKind
impl Unpin for RemediationKind
impl UnsafeUnpin for RemediationKind
impl UnwindSafe for RemediationKind
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