[][src]Trait qapi_parser::QemuRepo

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>; }

Associated Types

type Error

Loading content...

Required methods

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>

Loading content...

Implementors

impl QemuRepo for QemuFileRepo[src]

type Error = Error

Loading content...