[][src]Struct czkawka_core::common_items::ExcludedItems

pub struct ExcludedItems {
    pub items: Vec<String>,
}

Fields

items: Vec<String>

Implementations

impl ExcludedItems[src]

pub fn new() -> Self[src]

pub fn set_excluded_items(
    &mut self,
    excluded_items: String,
    text_messages: &mut Messages
)
[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 is_excluded(&self, path: impl AsRef<Path>) -> bool[src]

Checks whether a specified path is excluded from searching

Trait Implementations

impl Default for ExcludedItems[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.