[][src]Struct czkawka_core::similar_files::SimilarImages

pub struct SimilarImages { /* fields omitted */ }

Struct to store most basics info about all folder

Implementations

impl SimilarImages[src]

Method implementation for EmptyFolder

pub fn new() -> Self[src]

New function providing basics values

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

pub const fn get_similar_images(&self) -> &Vec<StructSimilar>[src]

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

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

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

Public function used by CLI to search for empty folders

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

Set included dir which needs to be relative, exists etc.

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

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

Trait Implementations

impl DebugPrint for SimilarImages[src]

impl Default for SimilarImages[src]

impl PrintResults for SimilarImages[src]

fn print_results(&self)[src]

Prints basic info about empty folders // TODO print better

impl SaveResults for SimilarImages[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.