Enum gaol::profile::PathPattern
source · pub enum PathPattern {
Literal(PathBuf),
Subpath(PathBuf),
}
Expand description
Describes a path or paths on the filesystem.
Variants§
Literal(PathBuf)
One specific path.
Subpath(PathBuf)
A directory and all of its contents, recursively.
Trait Implementations§
source§impl Clone for PathPattern
impl Clone for PathPattern
source§fn clone(&self) -> PathPattern
fn clone(&self) -> PathPattern
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for PathPattern
impl RefUnwindSafe for PathPattern
impl Send for PathPattern
impl Sync for PathPattern
impl Unpin for PathPattern
impl UnwindSafe for PathPattern
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