pub trait CollateralTree {
// Required methods
fn get(&self, pvss: &PVSS, path: &ItemPath) -> Result<Vec<u8>, Error>;
fn search(&self, path: &ItemPath) -> Result<Vec<PVSS>, Error>;
}Expand description
A trait representing a data structure that provides a direct access to the product-specific collateral files.