pub struct InputPath<'a, 'b> {
base_dir: &'a Path,
path: &'b Path,
}
Expand description
An input path.
Tracks an absolute base directory and a relative path.
Fields§
§base_dir: &'a Path
§path: &'b Path
Implementations§
Auto Trait Implementations§
impl<'a, 'b> Freeze for InputPath<'a, 'b>
impl<'a, 'b> RefUnwindSafe for InputPath<'a, 'b>
impl<'a, 'b> Send for InputPath<'a, 'b>
impl<'a, 'b> Sync for InputPath<'a, 'b>
impl<'a, 'b> Unpin for InputPath<'a, 'b>
impl<'a, 'b> UnwindSafe for InputPath<'a, 'b>
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