pub struct GlobSet<'a> {
pub matcher: GlobSet,
/* private fields */
}Expand description
Comfort type for glob matching.
This type is created by Builder::build_glob_set (refer to the function documentation). The
matcher stores two globs created from the original pattern as [**/pattern, pattern] for
easy matching on multiple paths.
Fields§
§matcher: GlobSetAssociated matcher.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for GlobSet<'a>
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more