[go: up one dir, main page]

tower-discover 0.3.0

Abstracts over service discovery strategies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::{error::Error, fmt};

#[derive(Debug)]
pub enum Never {}

impl fmt::Display for Never {
    fn fmt(&self, _: &mut fmt::Formatter) -> fmt::Result {
        match *self {}
    }
}

impl Error for Never {}