[][src]Struct czkawka_core::big_file::BigFile

pub struct BigFile { /* fields omitted */ }

Struct with required information's to work

Implementations

impl BigFile[src]

pub fn new() -> Self[src]

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

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

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

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

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

List of allowed extensions, only files with this extensions will be checking if are duplicates

pub fn set_number_of_files_to_check(&mut self, number_of_files_to_check: usize)[src]

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

Setting excluded items which needs to contains * wildcard Are a lot of slower than absolute path, so it should be used to heavy

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

Setting included directories, at least one must be provided

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

Setting absolute path to exclude

Trait Implementations

impl DebugPrint for BigFile[src]

fn debug_print(&self)[src]

Debugging printing - only available on debug build

impl Default for BigFile[src]

impl PrintResults for BigFile[src]

impl SaveResults for BigFile[src]

fn save_results_to_file(&mut self, file_name: &str) -> bool[src]

Saving results to provided file

Auto Trait Implementations

impl RefUnwindSafe for BigFile

impl Send for BigFile

impl Sync for BigFile

impl Unpin for BigFile

impl UnwindSafe for BigFile

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.