Trait qapi_parser::QemuRepo
source · pub trait QemuRepo {
type Error;
fn push_context<P: AsRef<Path>>(&mut self, p: P);
fn pop_context(&mut self);
fn context(&self) -> &Path;
fn include<P: AsRef<Path>>(
&mut self,
p: P
) -> Result<(QemuRepoContext<'_, Self>, String), Self::Error>;
}