razel 0.5.7

a command executor with caching for data processing pipelines
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash, Deserialize, Serialize)]
pub enum CacheHit {
    Local,
    Remote,
    /// AC from local cache, some files from remote cache
    Mixed,
}