pub struct DirDiff {
pub dir: String,
pub dir_comp: String,
pub excluding: Option<Vec<String>>,
pub recursive_excluding: bool,
}
Fields§
§dir: String
directory to compare
dir_comp: String
comparation directory
excluding: Option<Vec<String>>
exclude directories or files from the comparation
recursive_excluding: bool
exclude recursively or only the from the root path
Auto Trait Implementations§
impl Freeze for DirDiff
impl RefUnwindSafe for DirDiff
impl Send for DirDiff
impl Sync for DirDiff
impl Unpin for DirDiff
impl UnwindSafe for DirDiff
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