pub enum ExtendedGlobKind {
Plus,
At,
Exclamation,
Question,
Star,
}Expand description
Represents the kind of an extended glob.
Variants§
Plus
The + extended glob; matches one or more occurrences of the inner pattern.
At
The @ extended glob; allows matching an alternation of inner patterns.
Exclamation
The ! extended glob; matches the negation of the inner pattern.
Question
The ? extended glob; matches zero or one occurrence of the inner pattern.
Star
The * extended glob; matches zero or more occurrences of the inner pattern.
Auto Trait Implementations§
impl Freeze for ExtendedGlobKind
impl RefUnwindSafe for ExtendedGlobKind
impl Send for ExtendedGlobKind
impl Sync for ExtendedGlobKind
impl Unpin for ExtendedGlobKind
impl UnwindSafe for ExtendedGlobKind
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