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