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§
Provided Methods§
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.