Skip to main content

TopologicalPathLocalServerHandler

Trait TopologicalPathLocalServerHandler 

Source
pub trait TopologicalPathLocalServerHandler<___T = Channel>
where ___T: Transport,
{ // 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§

Source

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.

Implementations on Foreign Types§

Source§

impl<___H, ___T> TopologicalPathLocalServerHandler<___T> for Local<___H>
where ___H: TopologicalPathServerHandler<___T>, ___T: Transport,

Source§

async fn get_topological_path( &mut self, responder: Responder<GetTopologicalPath, ___T>, )

Implementors§