Type Alias nix_compat::store_path::StorePathRef

source ·
pub type StorePathRef<'a> = StorePath<&'a str>;
Expand description

Like StorePath, but without a heap allocation for the name. Used by StorePath for parsing.

Aliased Type§

struct StorePathRef<'a> {
    digest: [u8; 20],
    name: &'a str,
}

Fields§

§digest: [u8; 20]§name: &'a str