Struct prost_types::UninterpretedOption [−][src]
pub struct UninterpretedOption {
pub name: Vec<NamePart>,
pub identifier_value: Option<String>,
pub positive_int_value: Option<u64>,
pub negative_int_value: Option<i64>,
pub double_value: Option<f64>,
pub string_value: Option<Vec<u8>>,
pub aggregate_value: Option<String>,
}A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects (e.g. returned by Descriptor::options(), or produced by Descriptor::CopyTo()) will never have UninterpretedOptions in them.
Fields
name: Vec<NamePart>
identifier_value: Option<String>
The value of the uninterpreted option, in whatever type the tokenizer identified it as during parsing. Exactly one of these should be set.
positive_int_value: Option<u64>
negative_int_value: Option<i64>
double_value: Option<f64>
string_value: Option<Vec<u8>>
aggregate_value: Option<String>
Methods
impl UninterpretedOption[src]
impl UninterpretedOptionpub fn identifier_value(&self) -> &str[src]
pub fn identifier_value(&self) -> &strpub fn positive_int_value(&self) -> u64[src]
pub fn positive_int_value(&self) -> u64pub fn negative_int_value(&self) -> i64[src]
pub fn negative_int_value(&self) -> i64pub fn double_value(&self) -> f64[src]
pub fn double_value(&self) -> f64pub fn string_value(&self) -> &[u8][src]
pub fn string_value(&self) -> &[u8]pub fn aggregate_value(&self) -> &str[src]
pub fn aggregate_value(&self) -> &strTrait Implementations
impl Message for UninterpretedOption[src]
impl Message for UninterpretedOptionfn 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 UninterpretedOption[src]
impl Default for UninterpretedOptionfn default() -> UninterpretedOption[src]
fn default() -> UninterpretedOptionReturns the "default value" for a type. Read more
impl Debug for UninterpretedOption[src]
impl Debug for UninterpretedOptionfn 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 UninterpretedOption[src]
impl Clone for UninterpretedOptionfn clone(&self) -> UninterpretedOption[src]
fn clone(&self) -> UninterpretedOptionReturns 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 UninterpretedOption[src]
impl PartialEq for UninterpretedOptionfn eq(&self, other: &UninterpretedOption) -> bool[src]
fn eq(&self, other: &UninterpretedOption) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &UninterpretedOption) -> bool[src]
fn ne(&self, other: &UninterpretedOption) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for UninterpretedOption
impl Send for UninterpretedOptionimpl Sync for UninterpretedOption
impl Sync for UninterpretedOption