Trait RelayCellFormatTrait

Source
pub trait RelayCellFormatTrait {
    type FIELDS: RelayCellFields;

    const FORMAT: RelayCellFormat;
}
Expand description

Specifies a relay cell format and associated types.

Required Associated Constants§

Source

const FORMAT: RelayCellFormat

Which format this object is for.

Required Associated Types§

Source

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.

Implementors§