pub trait DeviceRouteExtraProxyInterface: Send + Sync {
    type GetLocalOnMeshPrefixesResponseFut: Future<Output = Result<Vec<OnMeshPrefix>, Error>> + Send;
    type GetLocalExternalRoutesResponseFut: Future<Output = Result<Vec<ExternalRoute>, Error>> + Send;

    // Required methods
    fn get_local_on_mesh_prefixes(
        &self
    ) -> Self::GetLocalOnMeshPrefixesResponseFut;
    fn get_local_external_routes(
        &self
    ) -> Self::GetLocalExternalRoutesResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§