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