pub trait TopologicalPathLocalServerHandler<___T: Transport = Channel> {
// Required method
fn get_topological_path(
&mut self,
responder: Responder<GetTopologicalPath, ___T>,
) -> impl Future<Output = ()>;
}Expand description
A server handler for the TopologicalPath protocol.
See TopologicalPath for more details.
Required Methods§
Sourcefn get_topological_path(
&mut self,
responder: Responder<GetTopologicalPath, ___T>,
) -> impl Future<Output = ()>
fn get_topological_path( &mut self, responder: Responder<GetTopologicalPath, ___T>, ) -> impl Future<Output = ()>
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", so this trait is not object safe.