Struct protobuf::UnknownValues
[−]
[src]
pub struct UnknownValues { pub fixed32: Vec<u32>, pub fixed64: Vec<u64>, pub varint: Vec<u64>, pub length_delimited: Vec<Vec<u8>>, }
Fields
fixed32: Vec<u32>
fixed64: Vec<u64>
varint: Vec<u64>
length_delimited: Vec<Vec<u8>>
Methods
impl UnknownValues
[src]
fn add_value(&mut self, value: UnknownValue)
fn iter<'s>(&'s self) -> UnknownValuesIter<'s>
Trait Implementations
impl Clone for UnknownValues
[src]
fn clone(&self) -> UnknownValues
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for UnknownValues
[src]
fn eq(&self, __arg_0: &UnknownValues) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &UnknownValues) -> bool
This method tests for !=
.
impl Eq for UnknownValues
[src]
impl Debug for UnknownValues
[src]
impl Default for UnknownValues
[src]
fn default() -> UnknownValues
Returns the "default value" for a type. Read more
impl<'a> IntoIterator for &'a UnknownValues
[src]
type Item = UnknownValueRef<'a>
The type of the elements being iterated over.
type IntoIter = UnknownValuesIter<'a>
Which kind of iterator are we turning this into?
fn into_iter(self) -> UnknownValuesIter<'a>
Creates an iterator from a value. Read more