pub(crate) trait Inspector<ServerT: Server>: Send + 'static {
// Required methods
fn inspect(self: Box<Self>, server: &ServerT);
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}Expand description
What inspects a server via Command::Inspect.