pub struct UntrackedCache {
pub ident: Vec<u8>,
pub ss_info_exclude: OidStat,
pub ss_excludes_file: OidStat,
pub dir_flags: u32,
pub exclude_per_dir: String,
pub root: Option<UntrackedCacheDir>,
pub dir_created: u64,
pub gitignore_invalidated: u64,
pub dir_invalidated: u64,
pub dir_opened: u64,
}Fields§
§ident: Vec<u8>§ss_info_exclude: OidStat§ss_excludes_file: OidStat§dir_flags: u32§exclude_per_dir: String§root: Option<UntrackedCacheDir>§dir_created: u64§gitignore_invalidated: u64§dir_invalidated: u64§dir_opened: u64Implementations§
Trait Implementations§
Source§impl Clone for UntrackedCache
impl Clone for UntrackedCache
Source§fn clone(&self) -> UntrackedCache
fn clone(&self) -> UntrackedCache
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 UntrackedCache
impl RefUnwindSafe for UntrackedCache
impl Send for UntrackedCache
impl Sync for UntrackedCache
impl Unpin for UntrackedCache
impl UnsafeUnpin for UntrackedCache
impl UnwindSafe for UntrackedCache
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