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>;
}Available on crate feature
collateral_manager only.Expand description
A trait representing a data structure that provides a direct access to the product-specific collateral files.
Required Methods§
Implementors§
impl CollateralTree for EmbeddedTree
Available on crate feature
embedded_collateral_tree only.impl CollateralTree for FileSystemTree
Available on crate feature
fs_collateral_tree only.