pub trait ProtoMessage: InputNode {
    fn proto_message_type() -> &'static str;
}
Expand description

Trait for all Rust types that represent protobuf messages. These are always structs for which all fields implement InputNode.

Required Methods

Returns the protobuf type name for messages of this type.

Implementations on Foreign Types

Implementors