pub struct InputPaths<'a, 'b> {
base_dir: &'a Path,
paths: &'b [PathBuf],
}
Expand description
A set of input paths.
Tracks a base directory and a set of relative paths.
Fields§
§base_dir: &'a Path
§paths: &'b [PathBuf]
Implementations§
Trait Implementations§
Source§impl<'a, 'b> Clone for InputPaths<'a, 'b>
impl<'a, 'b> Clone for InputPaths<'a, 'b>
Source§fn clone(&self) -> InputPaths<'a, 'b>
fn clone(&self) -> InputPaths<'a, 'b>
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 moreSource§impl<'a, 'b> Debug for InputPaths<'a, 'b>
impl<'a, 'b> Debug for InputPaths<'a, 'b>
impl<'a, 'b> Copy for InputPaths<'a, 'b>
Auto Trait Implementations§
impl<'a, 'b> Freeze for InputPaths<'a, 'b>
impl<'a, 'b> RefUnwindSafe for InputPaths<'a, 'b>
impl<'a, 'b> Send for InputPaths<'a, 'b>
impl<'a, 'b> Sync for InputPaths<'a, 'b>
impl<'a, 'b> Unpin for InputPaths<'a, 'b>
impl<'a, 'b> UnwindSafe for InputPaths<'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