pub struct FinalizeReport {
pub deleted: Vec<String>,
pub kept: usize,
}Expand description
Report of a finalize pass.
Fields§
§deleted: Vec<String>Candidate ids removed from the index (had status == Rejected and
cleanup_policy == Some("delete")).
kept: usizeNumber of distinct candidates remaining in the index after the pass.
Trait Implementations§
Source§impl Clone for FinalizeReport
impl Clone for FinalizeReport
Source§fn clone(&self) -> FinalizeReport
fn clone(&self) -> FinalizeReport
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 FinalizeReport
impl Debug for FinalizeReport
Source§impl PartialEq for FinalizeReport
impl PartialEq for FinalizeReport
Source§fn eq(&self, other: &FinalizeReport) -> bool
fn eq(&self, other: &FinalizeReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FinalizeReport
impl Serialize for FinalizeReport
impl StructuralPartialEq for FinalizeReport
Auto Trait Implementations§
impl Freeze for FinalizeReport
impl RefUnwindSafe for FinalizeReport
impl Send for FinalizeReport
impl Sync for FinalizeReport
impl Unpin for FinalizeReport
impl UnsafeUnpin for FinalizeReport
impl UnwindSafe for FinalizeReport
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