Struct protobuf::descriptor::EnumValueDescriptorProto
source · [−]pub struct EnumValueDescriptorProto {
pub name: Option<String>,
pub number: Option<i32>,
pub options: MessageField<EnumValueOptions>,
pub special_fields: SpecialFields,
}
Expand description
Describes a value within an enum.
Fields
name: Option<String>
number: Option<i32>
options: MessageField<EnumValueOptions>
special_fields: SpecialFields
Implementations
sourceimpl EnumValueDescriptorProto
impl EnumValueDescriptorProto
pub fn new() -> EnumValueDescriptorProto
pub fn name(&self) -> &str
pub fn clear_name(&mut self)
pub fn has_name(&self) -> bool
pub fn set_name(&mut self, v: String)
pub fn mut_name(&mut self) -> &mut String
pub fn take_name(&mut self) -> String
pub fn number(&self) -> i32
pub fn clear_number(&mut self)
pub fn has_number(&self) -> bool
pub fn set_number(&mut self, v: i32)
Trait Implementations
sourceimpl Clone for EnumValueDescriptorProto
impl Clone for EnumValueDescriptorProto
sourcefn clone(&self) -> EnumValueDescriptorProto
fn clone(&self) -> EnumValueDescriptorProto
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for EnumValueDescriptorProto
impl Debug for EnumValueDescriptorProto
sourceimpl Default for EnumValueDescriptorProto
impl Default for EnumValueDescriptorProto
sourcefn default() -> EnumValueDescriptorProto
fn default() -> EnumValueDescriptorProto
Returns the “default value” for a type. Read more
sourceimpl<'a> Default for &'a EnumValueDescriptorProto
impl<'a> Default for &'a EnumValueDescriptorProto
sourcefn default() -> &'a EnumValueDescriptorProto
fn default() -> &'a EnumValueDescriptorProto
Returns the “default value” for a type. Read more
sourceimpl Display for EnumValueDescriptorProto
impl Display for EnumValueDescriptorProto
sourceimpl Message for EnumValueDescriptorProto
impl Message for EnumValueDescriptorProto
sourceconst NAME: &'static str = "EnumValueDescriptorProto"
const NAME: &'static str = "EnumValueDescriptorProto"
Message name as specified in .proto
file. Read more
sourcefn is_initialized(&self) -> bool
fn is_initialized(&self) -> bool
True iff all required fields are initialized.
Always returns true
for protobuf 3. Read more
sourcefn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> Result<()>
fn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> Result<()>
Update this message object with fields read from given stream.
sourcefn compute_size(&self) -> u64
fn compute_size(&self) -> u64
Compute and cache size of this message and all nested messages. Read more
sourcefn write_to_with_cached_sizes(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
fn write_to_with_cached_sizes(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
Write message to the stream. Read more
sourcefn special_fields(&self) -> &SpecialFields
fn special_fields(&self) -> &SpecialFields
Special fields (unknown fields and cached size).
sourcefn mut_special_fields(&mut self) -> &mut SpecialFields
fn mut_special_fields(&mut self) -> &mut SpecialFields
Special fields (unknown fields and cached size).
sourcefn new() -> EnumValueDescriptorProto
fn new() -> EnumValueDescriptorProto
Create an empty message object. Read more
sourcefn default_instance() -> &'static EnumValueDescriptorProto
fn default_instance() -> &'static EnumValueDescriptorProto
Return a pointer to default immutable message with static lifetime. Read more
sourcefn parse_from(is: &mut CodedInputStream<'_>) -> Result<Self>
fn parse_from(is: &mut CodedInputStream<'_>) -> Result<Self>
Parse message from stream.
sourcefn cached_size(&self) -> u32
fn cached_size(&self) -> u32
Get size previously computed by compute_size
. Read more
sourcefn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<()>
fn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<()>
Write the message to the stream. Read more
sourcefn write_length_delimited_to(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
fn write_length_delimited_to(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
Write the message to the stream prepending the message with message length encoded as varint. Read more
sourcefn write_length_delimited_to_vec(&self, vec: &mut Vec<u8>) -> Result<()>
fn write_length_delimited_to_vec(&self, vec: &mut Vec<u8>) -> Result<()>
Write the message to the vec, prepend the message with message length encoded as varint. Read more
sourcefn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<()>
fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<()>
Update this message object with fields read from given stream.
sourcefn parse_from_reader(reader: &mut dyn Read) -> Result<Self>
fn parse_from_reader(reader: &mut dyn Read) -> Result<Self>
Parse message from reader. Parse stops on EOF or when error encountered. Read more
sourcefn parse_from_tokio_bytes(bytes: &Bytes) -> Result<Self>
fn parse_from_tokio_bytes(bytes: &Bytes) -> Result<Self>
Parse message from Bytes
object.
Resulting message may share references to the passed bytes object. Read more
sourcefn check_initialized(&self) -> Result<()>
fn check_initialized(&self) -> Result<()>
Check if all required fields of this object are initialized.
sourcefn write_to_writer(&self, w: &mut dyn Write) -> Result<()>
fn write_to_writer(&self, w: &mut dyn Write) -> Result<()>
Write the message to the writer.
sourcefn write_length_delimited_to_writer(&self, w: &mut dyn Write) -> Result<()>
fn write_length_delimited_to_writer(&self, w: &mut dyn Write) -> Result<()>
Write the message to the writer, prepend the message with message length encoded as varint. Read more
sourcefn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>>
fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>>
Write the message to the bytes vec, prepend the message with message length encoded as varint. Read more
sourcefn unknown_fields(&self) -> &UnknownFields
fn unknown_fields(&self) -> &UnknownFields
Get a reference to unknown fields.
sourcefn mut_unknown_fields(&mut self) -> &mut UnknownFields
fn mut_unknown_fields(&mut self) -> &mut UnknownFields
Get a mutable reference to unknown fields.
sourceimpl MessageFull for EnumValueDescriptorProto
impl MessageFull for EnumValueDescriptorProto
sourcefn descriptor() -> MessageDescriptor
fn descriptor() -> MessageDescriptor
Get message descriptor for message type. Read more
sourcefn reflect_eq(&self, other: &Self, mode: &ReflectEqMode) -> bool
fn reflect_eq(&self, other: &Self, mode: &ReflectEqMode) -> bool
Reflective equality. Read more
sourceimpl PartialEq<EnumValueDescriptorProto> for EnumValueDescriptorProto
impl PartialEq<EnumValueDescriptorProto> for EnumValueDescriptorProto
sourcefn eq(&self, other: &EnumValueDescriptorProto) -> bool
fn eq(&self, other: &EnumValueDescriptorProto) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EnumValueDescriptorProto) -> bool
fn ne(&self, other: &EnumValueDescriptorProto) -> bool
This method tests for !=
.
sourceimpl ProtobufValue for EnumValueDescriptorProto
impl ProtobufValue for EnumValueDescriptorProto
type RuntimeType = RuntimeTypeMessage<EnumValueDescriptorProto>
type RuntimeType = RuntimeTypeMessage<EnumValueDescriptorProto>
Actual implementation of type properties.
impl StructuralPartialEq for EnumValueDescriptorProto
Auto Trait Implementations
impl RefUnwindSafe for EnumValueDescriptorProto
impl Send for EnumValueDescriptorProto
impl Sync for EnumValueDescriptorProto
impl Unpin for EnumValueDescriptorProto
impl UnwindSafe for EnumValueDescriptorProto
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more