pub type GreaseOrVersion = GreaseOr<ProtocolVersion>;
Expand description
A type that can either hold a valid ProtocolVersion
or serve as a GREASE placeholder.
Aliased Type§
pub enum GreaseOrVersion {
Grease,
T(ProtocolVersion),
}
Variants§
Grease
A GREASE placeholder value, which will be generated randomly per session.
T(ProtocolVersion)
A valid value of the generic type T
.