pub struct StepCache {
pub version: u32,
pub updated_at: u64,
pub steps: BTreeMap<String, BTreeMap<String, String>>,
}Expand description
Per-step cache of file content hashes that have passed hook checks.
Fields§
§version: u32§updated_at: u64§steps: BTreeMap<String, BTreeMap<String, String>>step_name → (file_path → content_hash)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StepCache
impl<'de> Deserialize<'de> for StepCache
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StepCache
impl RefUnwindSafe for StepCache
impl Send for StepCache
impl Sync for StepCache
impl Unpin for StepCache
impl UnsafeUnpin for StepCache
impl UnwindSafe for StepCache
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