[][src]Trait ghost_actor::example::MyInternalChanSend

pub trait MyInternalChanSend: GhostChanSend<MyInternalChan> {
    fn test_msg(
        &mut self,
        input: String
    ) -> MustBoxFuture<Result<String, MyError>> { ... } }

GhostChan protocol enum send trait.

Provided methods

fn test_msg(&mut self, input: String) -> MustBoxFuture<Result<String, MyError>>

will respond with 'echo: input'

Loading content...

Implementors

impl<T: GhostChanSend<MyInternalChan>> MyInternalChanSend for T[src]

Loading content...