Trait TopologicalPathClientSender

Source
pub trait TopologicalPathClientSender {
    type Transport: Transport;

    // Required method
    fn get_topological_path(
        &self,
    ) -> Result<ResponseFuture<'_, Self::Transport, GetTopologicalPath>, EncodeError>;
}
Expand description

A helper trait for the TopologicalPath client sender.

Required Associated Types§

Source

type Transport: Transport

Required Methods§

Source

fn get_topological_path( &self, ) -> Result<ResponseFuture<'_, Self::Transport, GetTopologicalPath>, EncodeError>

Return the topological path for this device

Implementations on Foreign Types§

Source§

impl<___T> TopologicalPathClientSender for ClientSender<___T, TopologicalPath>
where ___T: Transport,

Source§

fn get_topological_path( &self, ) -> Result<ResponseFuture<'_, Self::Transport, GetTopologicalPath>, EncodeError>

Return the topological path for this device

Source§

type Transport = ___T

Implementors§