Struct sub_strs::GlobSet

source ·
pub struct GlobSet<'a> { /* private fields */ }
Expand description

Glob set

This struct contains a set of Glob’s.

Implementations§

source§

impl<'a> GlobSet<'a>

source

pub fn from_iter<I0, I1>(iter: I0) -> Option<Self>where
    I0: IntoIterator<Item = I1>,
    I1: Into<Cow<'a, str>>,

Makes new instance from an iterator of Cow<'a, str>
Notes
  • Empty strings will be ignored.
  • If the iterator contains no globs, None is returned.
Examples
use sub_strs::GlobSet;

let glob_set = GlobSet::from_iter("*.rs|*.md".split('|')).unwrap();
assert!(glob_set.any("this.rs"));
assert!(glob_set.any("that.md"));
assert!(glob_set.any("not-this") == false);
source

pub fn merge<I>(iter: I) -> Option<Self>where
    I: IntoIterator<Item = Self>,

Merges an iterator of GlobSet<'a> into one
Notes
  • If there are no inner Glob’s, None is returned.
  • For #![no_std] users: this function takes little effort to remove duplicates. You should help with that yourself (by not providing duplicates).
Examples
use sub_strs::GlobSet;

let program_args = &["*.svg,*.OGG", "*.md"];
let glob_set = GlobSet::merge(
    program_args.iter().filter_map(|s|
        GlobSet::from_iter(s.to_lowercase().split(',').map(|s| s.to_string()))
    )
);
assert!(glob_set.map(|g| g.any("some.ogg")).unwrap_or(false));
source

pub fn any<S>(&self, s: S) -> boolwhere
    S: AsRef<str>,

Trait Implementations§

source§

impl<'a> Debug for GlobSet<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> PartialEq<GlobSet<'a>> for GlobSet<'a>

source§

fn eq(&self, other: &GlobSet<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Eq for GlobSet<'a>

source§

impl<'a> StructuralEq for GlobSet<'a>

source§

impl<'a> StructuralPartialEq for GlobSet<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for GlobSet<'a>

§

impl<'a> Send for GlobSet<'a>

§

impl<'a> Sync for GlobSet<'a>

§

impl<'a> Unpin for GlobSet<'a>

§

impl<'a> UnwindSafe for GlobSet<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere
    T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere
    U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.