pub trait SocketDiagnosticsSeed {
type Output;
// Required method
fn resolve(self) -> Option<Self::Output>;
}Expand description
A trait abstracting over the data required to calculate socket diagnostics. Allows delaying the computation arbitrarily long.