pub enum ChangeDetectionPath {
Path(PathBuf),
PathInclude(PathBuf, Box<dyn PathMatcher>),
PathExclude(PathBuf, Box<dyn PathMatcher>),
PathIncludeExclude {
path: PathBuf,
include: Box<dyn PathMatcher>,
exclude: Box<dyn PathMatcher>,
},
}
Variants§
Path(PathBuf)
PathInclude(PathBuf, Box<dyn PathMatcher>)
PathExclude(PathBuf, Box<dyn PathMatcher>)
PathIncludeExclude
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChangeDetectionPath
impl !RefUnwindSafe for ChangeDetectionPath
impl !Send for ChangeDetectionPath
impl !Sync for ChangeDetectionPath
impl Unpin for ChangeDetectionPath
impl !UnwindSafe for ChangeDetectionPath
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