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.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".