pub struct RemoveReport {
pub target: ConceptId,
pub removed_path: PathBuf,
pub redirected_to: Option<ConceptId>,
pub redirected_count: usize,
pub unlinked_count: usize,
pub affected_files: Vec<PathBuf>,
pub dry_run: bool,
}Expand description
Summary report of a removal operation.
Fields§
§target: ConceptIdThe concept ID that was removed.
removed_path: PathBufThe file path that was removed.
redirected_to: Option<ConceptId>Replacement concept ID if links were redirected.
redirected_count: usizeNumber of links rewritten to a redirect target.
unlinked_count: usizeNumber of links unlinked to plain text.
affected_files: Vec<PathBuf>List of all modified or removed file paths.
dry_run: boolWhether this was a dry run.
Trait Implementations§
Source§impl Clone for RemoveReport
impl Clone for RemoveReport
Source§fn clone(&self) -> RemoveReport
fn clone(&self) -> RemoveReport
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 RemoveReport
impl Debug for RemoveReport
Source§impl Display for RemoveReport
impl Display for RemoveReport
impl Eq for RemoveReport
Source§impl PartialEq for RemoveReport
impl PartialEq for RemoveReport
impl StructuralPartialEq for RemoveReport
Auto Trait Implementations§
impl Freeze for RemoveReport
impl RefUnwindSafe for RemoveReport
impl Send for RemoveReport
impl Sync for RemoveReport
impl Unpin for RemoveReport
impl UnsafeUnpin for RemoveReport
impl UnwindSafe for RemoveReport
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