pub struct TreeConfig<'a> {
pub root: &'a Path,
pub target: &'a str,
pub filter_type: FilterType,
pub filters: Vec<Regex>,
}Fields§
§root: &'a Path§target: &'a str§filter_type: FilterType§filters: Vec<Regex>Trait Implementations§
Source§impl<'a> Clone for TreeConfig<'a>
impl<'a> Clone for TreeConfig<'a>
Source§fn clone(&self) -> TreeConfig<'a>
fn clone(&self) -> TreeConfig<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for TreeConfig<'a>
impl<'a> RefUnwindSafe for TreeConfig<'a>
impl<'a> Send for TreeConfig<'a>
impl<'a> Sync for TreeConfig<'a>
impl<'a> Unpin for TreeConfig<'a>
impl<'a> UnwindSafe for TreeConfig<'a>
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