pub trait TransportKind: Sealed {
type OrderingGuarantee: Ordering;
// Required method
fn networking_info() -> NetworkingInfo;
}Expand description
A transport backend for network channels.
Required Associated Types§
Sourcetype OrderingGuarantee: Ordering
type OrderingGuarantee: Ordering
The ordering guarantee provided by this transport.
Required Methods§
Sourcefn networking_info() -> NetworkingInfo
fn networking_info() -> NetworkingInfo
Returns the NetworkingInfo describing this transport’s configuration.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".