Skip to main content

TopologicalPathServerHandler

Trait TopologicalPathServerHandler 

Source
pub trait TopologicalPathServerHandler<___T: Transport = Channel> {
    // Required method
    fn get_topological_path(
        &mut self,
        responder: Responder<GetTopologicalPath, ___T>,
    ) -> impl Future<Output = ()> + Send;
}
Expand description

A server handler for the TopologicalPath protocol.

See TopologicalPath for more details.

Required Methods§

Source

fn get_topological_path( &mut self, responder: Responder<GetTopologicalPath, ___T>, ) -> impl Future<Output = ()> + Send

Return the topological path for this device

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§