pub struct FsFileResolver {
pub include_paths: Vec<PathBuf>,
}Expand description
File resolver that reads from the real filesystem.
Fields§
§include_paths: Vec<PathBuf>Additional directories to search for includes
Implementations§
Trait Implementations§
Source§impl Clone for FsFileResolver
impl Clone for FsFileResolver
Source§fn clone(&self) -> FsFileResolver
fn clone(&self) -> FsFileResolver
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 moreSource§impl Debug for FsFileResolver
impl Debug for FsFileResolver
Source§impl Default for FsFileResolver
impl Default for FsFileResolver
Auto Trait Implementations§
impl Freeze for FsFileResolver
impl RefUnwindSafe for FsFileResolver
impl Send for FsFileResolver
impl Sync for FsFileResolver
impl Unpin for FsFileResolver
impl UnsafeUnpin for FsFileResolver
impl UnwindSafe for FsFileResolver
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,
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