pub struct PreparedCaches {
pub env: BTreeMap<String, String>,
pub dirs: Vec<PathBuf>,
/* private fields */
}Expand description
Prepared cache slots for one check.
Fields§
§env: BTreeMap<String, String>Environment exports. Values are the worktree directories the check uses.
dirs: Vec<PathBuf>Worktree directories bound for this check.
Trait Implementations§
Source§impl Clone for PreparedCaches
impl Clone for PreparedCaches
Source§fn clone(&self) -> PreparedCaches
fn clone(&self) -> PreparedCaches
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PreparedCaches
impl Debug for PreparedCaches
Source§impl Default for PreparedCaches
impl Default for PreparedCaches
Source§fn default() -> PreparedCaches
fn default() -> PreparedCaches
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PreparedCaches
impl RefUnwindSafe for PreparedCaches
impl Send for PreparedCaches
impl Sync for PreparedCaches
impl Unpin for PreparedCaches
impl UnsafeUnpin for PreparedCaches
impl UnwindSafe for PreparedCaches
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