pub struct UntrackedCacheDir {
pub name: String,
pub untracked: Vec<String>,
pub dirs: Vec<UntrackedCacheDir>,
pub recurse: bool,
pub check_only: bool,
pub valid: bool,
pub exclude_oid: ObjectId,
pub stat_data: StatDataDisk,
}Fields§
§name: String§untracked: Vec<String>§dirs: Vec<UntrackedCacheDir>§recurse: bool§check_only: bool§valid: bool§exclude_oid: ObjectId§stat_data: StatDataDiskTrait Implementations§
Source§impl Clone for UntrackedCacheDir
impl Clone for UntrackedCacheDir
Source§fn clone(&self) -> UntrackedCacheDir
fn clone(&self) -> UntrackedCacheDir
Returns a duplicate 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 Freeze for UntrackedCacheDir
impl RefUnwindSafe for UntrackedCacheDir
impl Send for UntrackedCacheDir
impl Sync for UntrackedCacheDir
impl Unpin for UntrackedCacheDir
impl UnsafeUnpin for UntrackedCacheDir
impl UnwindSafe for UntrackedCacheDir
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