pub trait OrgVarlinkServiceInterface {
    fn get_info(&mut self) -> Result<ServiceInfo>;
    fn get_interface_description<S: Into<Cow<'static, str>>>(
        &mut self,
        interface: S
    ) -> Result<GetInterfaceDescriptionReply>; }

Required Methods§

Implementors§