pub enum Entry {
Files(Vec<AbsPathBuf>),
Directories(Directories),
}
Expand description
A set of files on the file system.
Variants§
Files(Vec<AbsPathBuf>)
The Entry
is represented by a raw set of files.
Directories(Directories)
The Entry
is represented by Directories
.
Implementations§
Source§impl Entry
impl Entry
Sourcepub fn rs_files_recursively(base: AbsPathBuf) -> Entry
pub fn rs_files_recursively(base: AbsPathBuf) -> Entry
Returns:
Entry::Directories(Directories {
extensions: ["rs"],
include: [base],
exclude: [base/.git],
})
Sourcepub fn local_cargo_package(base: AbsPathBuf) -> Entry
pub fn local_cargo_package(base: AbsPathBuf) -> Entry
Returns:
Entry::Directories(Directories {
extensions: ["rs"],
include: [base],
exclude: [base/.git, base/target],
})
Sourcepub fn cargo_package_dependency(base: AbsPathBuf) -> Entry
pub fn cargo_package_dependency(base: AbsPathBuf) -> Entry
Returns:
Entry::Directories(Directories {
extensions: ["rs"],
include: [base],
exclude: [base/.git, /tests, /examples, /benches],
})
Sourcepub fn contains_file(&self, path: &AbsPath) -> bool
pub fn contains_file(&self, path: &AbsPath) -> bool
Returns true
if path
is included in self
.
Sourcepub fn contains_dir(&self, path: &AbsPath) -> bool
pub fn contains_dir(&self, path: &AbsPath) -> bool
Returns true
if path
is included in self
.
- If
self
isEntry::Files
, returnsfalse
- Else, see
Directories::contains_dir
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more