pub trait VarlinkInterface {
    fn get_info(&self, call: &mut dyn Call_GetInfo) -> Result<()>;
    fn resolve(
        &self,
        call: &mut dyn Call_Resolve,
        interface: String
    ) -> Result<()>; fn call_upgraded(
        &self,
        _call: &mut Call<'_>,
        _bufreader: &mut dyn BufRead
    ) -> Result<Vec<u8>> { ... } }

Required Methods§

Provided Methods§

Implementors§