CompositeNodeManagerServerHandler

Trait CompositeNodeManagerServerHandler 

Source
pub trait CompositeNodeManagerServerHandler<___T = Channel>
where ___T: Transport,
{ // Required method fn add_spec( &mut self, request: Request<AddSpec, ___T>, responder: Responder<AddSpec, ___T>, ) -> impl Future<Output = ()> + Send; // Provided method fn on_unknown_interaction( &mut self, ordinal: u64, ) -> impl Future<Output = ()> + Send { ... } }
Expand description

A server handler for the CompositeNodeManager protocol.

See CompositeNodeManager for more details.

Required Methods§

Source

fn add_spec( &mut self, request: Request<AddSpec, ___T>, responder: Responder<AddSpec, ___T>, ) -> impl Future<Output = ()> + Send

Adds the given composite node specification to the driver framework.

Provided Methods§

Source

fn on_unknown_interaction( &mut self, ordinal: u64, ) -> impl Future<Output = ()> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§