pub struct LoadPath {
pub path: PathBuf,
ephemeral: bool,
writable: bool,
}
Expand description
A VOA load path.
Fields§
§path: PathBuf
The file system path represented by the load path.
ephemeral: bool
§writable: bool
Implementations§
Source§impl LoadPath
impl LoadPath
Sourcepub fn matches_filter(&self, filter: &LoadPathFilter) -> bool
pub fn matches_filter(&self, filter: &LoadPathFilter) -> bool
Checks whether a LoadPathFilter
matches the properties of the LoadPath
.
Returns true
if the filter
matches the properties of self
, false
otherwise.
Trait Implementations§
impl StructuralPartialEq for LoadPath
Auto Trait Implementations§
impl Freeze for LoadPath
impl RefUnwindSafe for LoadPath
impl Send for LoadPath
impl Sync for LoadPath
impl Unpin for LoadPath
impl UnwindSafe for LoadPath
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