[][src]Struct duplicate_finder::output::Output

pub struct Output<TWrite: Write> {
    pub is_called: bool,
    // some fields omitted
}

Fields

is_called: bool

Methods

impl<TWrite: Write> Output<TWrite>[src]

pub fn new(writer: TWrite, total_files_count: u64) -> Output<TWrite>[src]

pub fn update_summary_progress(&mut self)[src]

pub fn update_file_progress(&mut self, percent: u64, message: &PathBuf)[src]

pub fn set_finish(
    &mut self,
    duplicates: Vec<Vec<FileInfo>>,
    output_type: OutputType
)
[src]

pub fn redraw(&mut self)[src]

Auto Trait Implementations

impl<TWrite> Send for Output<TWrite> where
    TWrite: Send

impl<TWrite> Sync for Output<TWrite> where
    TWrite: Sync

impl<TWrite> Unpin for Output<TWrite> where
    TWrite: Unpin

impl<TWrite> RefUnwindSafe for Output<TWrite> where
    TWrite: RefUnwindSafe

impl<TWrite> UnwindSafe for Output<TWrite> where
    TWrite: UnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]