pub struct CurationReport {
pub total_before: usize,
pub total_after: usize,
pub removed: usize,
pub candidates_for_removal: Vec<CurationCandidate>,
}Expand description
Report from a curation run.
Fields§
§total_before: usizeTotal entries before curation.
total_after: usizeTotal entries after curation.
removed: usizeNumber of entries actually removed.
candidates_for_removal: Vec<CurationCandidate>Candidates identified for removal.
Trait Implementations§
Source§impl Clone for CurationReport
impl Clone for CurationReport
Source§fn clone(&self) -> CurationReport
fn clone(&self) -> CurationReport
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 CurationReport
impl Debug for CurationReport
Source§impl Default for CurationReport
impl Default for CurationReport
Source§fn default() -> CurationReport
fn default() -> CurationReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CurationReport
impl<'de> Deserialize<'de> for CurationReport
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 CurationReport
impl RefUnwindSafe for CurationReport
impl Send for CurationReport
impl Sync for CurationReport
impl Unpin for CurationReport
impl UnsafeUnpin for CurationReport
impl UnwindSafe for CurationReport
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