Struct prost_types::EnumDescriptorProto [−][src]
pub struct EnumDescriptorProto {
pub name: Option<String>,
pub value: Vec<EnumValueDescriptorProto>,
pub options: Option<EnumOptions>,
pub reserved_range: Vec<EnumReservedRange>,
pub reserved_name: Vec<String>,
}Describes an enum type.
Fields
name: Option<String>
value: Vec<EnumValueDescriptorProto>
options: Option<EnumOptions>
reserved_range: Vec<EnumReservedRange>
Range of reserved numeric values. Reserved numeric values may not be used by enum values in the same enum declaration. Reserved ranges may not overlap.
reserved_name: Vec<String>
Reserved enum value names, which may not be reused. A given name may only be reserved once.
Methods
impl EnumDescriptorProto[src]
impl EnumDescriptorProtoTrait Implementations
impl Message for EnumDescriptorProto[src]
impl Message for EnumDescriptorProtofn encode_raw<B>(&self, buf: &mut B) where
B: BufMut, [src]
fn encode_raw<B>(&self, buf: &mut B) where
B: BufMut, fn merge_field<B>(&mut self, buf: &mut B) -> Result<(), DecodeError> where
B: Buf, [src]
fn merge_field<B>(&mut self, buf: &mut B) -> Result<(), DecodeError> where
B: Buf, fn encoded_len(&self) -> usize[src]
fn encoded_len(&self) -> usizeReturns the encoded length of the message without a length delimiter.
fn clear(&mut self)[src]
fn clear(&mut self)Clears the message, resetting all fields to their default.
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut, [src]
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut, Encodes the message to a buffer. Read more
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut, [src]
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut, Encodes the message with a length-delimiter to a buffer. Read more
fn decode<B>(buf: B) -> Result<Self, DecodeError> where
B: IntoBuf,
Self: Default, [src]
fn decode<B>(buf: B) -> Result<Self, DecodeError> where
B: IntoBuf,
Self: Default, Decodes an instance of the message from a buffer. Read more
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
B: IntoBuf,
Self: Default, [src]
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
B: IntoBuf,
Self: Default, Decodes a length-delimited instance of the message from the buffer.
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: IntoBuf, [src]
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: IntoBuf, Decodes an instance of the message from a buffer, and merges it into self. Read more
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: IntoBuf, [src]
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: IntoBuf, Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more
impl Default for EnumDescriptorProto[src]
impl Default for EnumDescriptorProtofn default() -> EnumDescriptorProto[src]
fn default() -> EnumDescriptorProtoReturns the "default value" for a type. Read more
impl Debug for EnumDescriptorProto[src]
impl Debug for EnumDescriptorProtofn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for EnumDescriptorProto[src]
impl Clone for EnumDescriptorProtofn clone(&self) -> EnumDescriptorProto[src]
fn clone(&self) -> EnumDescriptorProtoReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialEq for EnumDescriptorProto[src]
impl PartialEq for EnumDescriptorProtofn eq(&self, other: &EnumDescriptorProto) -> bool[src]
fn eq(&self, other: &EnumDescriptorProto) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &EnumDescriptorProto) -> bool[src]
fn ne(&self, other: &EnumDescriptorProto) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for EnumDescriptorProto
impl Send for EnumDescriptorProtoimpl Sync for EnumDescriptorProto
impl Sync for EnumDescriptorProto