pub type StorePathRef<'a> = StorePath<&'a str>;
Like StorePath, but without a heap allocation for the name. Used by StorePath for parsing.
struct StorePathRef<'a> { digest: [u8; 20], name: &'a str, }
digest: [u8; 20]
name: &'a str