Trait fclones::StageMetrics[][src]

pub trait StageMetrics {
    fn total_count(self) -> usize;
fn total_size(self) -> FileLen;
fn selected_count(self, rf_over: usize, rf_under: usize) -> usize;
fn selected_size(self, rf_over: usize, rf_under: usize) -> FileLen; }
Expand description

Computes summaries of the results obtained from each grouping stage.

Required methods

Returns the total count of the files

Returns the sum of file lengths

Returns the total count of redundant files

Returns the amount of data in redundant files

Implementors