pub trait Server: Server {
    // Provided methods
    fn subscribe(
        &mut self,
        _: Params<Owned>,
        _: Results<Owned>
    ) -> Promise<(), Error> { ... }
    fn unicode_text(
        &mut self,
        _: Params<Owned>,
        _: Results<Owned>
    ) -> Promise<(), Error> { ... }
    fn unicode_state(
        &mut self,
        _: Params<Owned>,
        _: Results<Owned>
    ) -> Promise<(), Error> { ... }
    fn info(
        &mut self,
        _: Params<Owned>,
        _: Results<Owned>
    ) -> Promise<(), Error> { ... }
}

Provided Methods§

source

fn subscribe( &mut self, _: Params<Owned>, _: Results<Owned> ) -> Promise<(), Error>

source

fn unicode_text( &mut self, _: Params<Owned>, _: Results<Owned> ) -> Promise<(), Error>

source

fn unicode_state( &mut self, _: Params<Owned>, _: Results<Owned> ) -> Promise<(), Error>

source

fn info(&mut self, _: Params<Owned>, _: Results<Owned>) -> Promise<(), Error>

Implementors§