Trait NodeControllerServerSender

Source
pub trait NodeControllerServerSender {
    type Transport: Transport;

    // Required method
    fn on_bind(&self) -> Result<SendFuture<'_, Self::Transport>, EncodeError>;
}
Expand description

A helper trait for the NodeController server sender.

Required Associated Types§

Source

type Transport: Transport

Required Methods§

Source

fn on_bind(&self) -> Result<SendFuture<'_, Self::Transport>, EncodeError>

Event that is triggered when the associated Node is bound to a driver.

Implementations on Foreign Types§

Source§

impl<___T> NodeControllerServerSender for ServerSender<___T, NodeController>
where ___T: Transport,

Source§

fn on_bind(&self) -> Result<SendFuture<'_, Self::Transport>, EncodeError>

Event that is triggered when the associated Node is bound to a driver.

Source§

type Transport = ___T

Implementors§