pub trait ProtobufValue: Clone + Default + Debug + Send + Sync + Sized + 'static {
    type RuntimeType: RuntimeTypeTrait<Value = Self>;
}
Expand description

Type implemented by all protobuf singular types (primitives, string, messages, enums).

Used in reflection.

Required Associated Types

Actual implementation of type properties.

Implementations on Foreign Types

Implementors