Trait Server

Source
pub trait Server {
    // Required method
    fn dispatch_call(
        &mut self,
        interface_id: u64,
        method_id: u16,
        params: Params<Owned>,
        results: Results<Owned>,
    ) -> DispatchCallResult;
}
Expand description

An untyped server.

Required Methods§

Source

fn dispatch_call( &mut self, interface_id: u64, method_id: u16, params: Params<Owned>, results: Results<Owned>, ) -> DispatchCallResult

Implementors§