pub trait RelayCellFormatTrait {
type FIELDS: RelayCellFields;
const FORMAT: RelayCellFormat;
}Expand description
Specifies a relay cell format and associated types.
Required Associated Constants§
Sourceconst FORMAT: RelayCellFormat
const FORMAT: RelayCellFormat
Which format this object is for.
Required Associated Types§
Sourcetype FIELDS: RelayCellFields
type FIELDS: RelayCellFields
A RelayCellFields type for this format.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.