Enum xvc_walker::MatchResult
source · pub enum MatchResult {
NoMatch,
Ignore,
Whitelist,
}Expand description
Show whether a path matches to a glob rule
Variants
NoMatch
There is no match between glob(s) and path
Ignore
Path matches to ignored glob(s)
Whitelist
Path matches to whitelisted glob(s)
Trait Implementations
sourceimpl Clone for MatchResult
impl Clone for MatchResult
sourcefn clone(&self) -> MatchResult
fn clone(&self) -> MatchResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations
impl RefUnwindSafe for MatchResult
impl Send for MatchResult
impl Sync for MatchResult
impl Unpin for MatchResult
impl UnwindSafe for MatchResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more