pub trait ProtoRepr: Sized + RustType<Self::Proto> {
    type Proto: Message;
}
Expand description

A trait that declares that Self::Proto is the default Protobuf representation for Self.

Associated Types

Implementors