[][src]Struct czkawka_core::duplicate::DuplicateFinder

pub struct DuplicateFinder { /* fields omitted */ }

Struct with required information's to work

Implementations

impl DuplicateFinder[src]

pub fn new() -> Self[src]

pub fn find_duplicates(&mut self, rx: Option<&Receiver<()>>)[src]

pub const fn get_check_method(&self) -> &CheckingMethod[src]

pub const fn get_files_sorted_by_size(&self) -> &BTreeMap<u64, Vec<FileEntry>>[src]

pub const fn get_files_sorted_by_hash(
    &self
) -> &BTreeMap<u64, Vec<Vec<FileEntry>>>
[src]

pub const fn get_text_messages(&self) -> &Messages[src]

pub const fn get_information(&self) -> &Info[src]

pub fn set_check_method(&mut self, check_method: CheckingMethod)[src]

pub fn set_delete_method(&mut self, delete_method: DeleteMethod)[src]

pub fn set_minimal_file_size(&mut self, minimal_file_size: u64)[src]

pub fn set_included_directory(&mut self, included_directory: String) -> bool[src]

pub fn set_excluded_directory(&mut self, excluded_directory: String)[src]

pub fn set_allowed_extensions(&mut self, allowed_extensions: String)[src]

pub fn set_excluded_items(&mut self, excluded_items: String)[src]

Trait Implementations

impl DebugPrint for DuplicateFinder[src]

fn debug_print(&self)[src]

Debugging printing - only available on debug build

impl Default for DuplicateFinder[src]

impl PrintResults for DuplicateFinder[src]

fn print_results(&self)[src]

Print information's about duplicated entries Only needed for CLI

impl SaveResults for DuplicateFinder[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.