pub enum RepositoryMatch {
None,
Ignore,
Include,
OverrideIgnore,
OverrideInclude,
Hidden,
}Expand description
Highest-precedence selection decision for a repository path.
Variants§
Implementations§
Source§impl RepositoryMatch
impl RepositoryMatch
pub const fn is_ignored(self) -> bool
Trait Implementations§
Source§impl Clone for RepositoryMatch
impl Clone for RepositoryMatch
Source§fn clone(&self) -> RepositoryMatch
fn clone(&self) -> RepositoryMatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RepositoryMatch
Source§impl Debug for RepositoryMatch
impl Debug for RepositoryMatch
impl Eq for RepositoryMatch
Source§impl PartialEq for RepositoryMatch
impl PartialEq for RepositoryMatch
impl StructuralPartialEq for RepositoryMatch
Auto Trait Implementations§
impl Freeze for RepositoryMatch
impl RefUnwindSafe for RepositoryMatch
impl Send for RepositoryMatch
impl Sync for RepositoryMatch
impl Unpin for RepositoryMatch
impl UnsafeUnpin for RepositoryMatch
impl UnwindSafe for RepositoryMatch
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