Struct protobuf::descriptor::UninterpretedOption[][src]

pub struct UninterpretedOption {
    pub name: RepeatedField<UninterpretedOption_NamePart>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
    // some fields omitted
}

Fields

name: RepeatedField<UninterpretedOption_NamePart>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl UninterpretedOption[src]

pub fn new() -> UninterpretedOption[src]

pub fn get_name(&self) -> &[UninterpretedOption_NamePart]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

pub fn clear_name(&mut self)[src]

pub fn set_name(&mut self, v: RepeatedField<UninterpretedOption_NamePart>)[src]

pub fn mut_name(&mut self) -> &mut RepeatedField<UninterpretedOption_NamePart>[src]

pub fn take_name(&mut self) -> RepeatedField<UninterpretedOption_NamePart>[src]

pub fn get_identifier_value(&self) -> &str[src]

pub fn clear_identifier_value(&mut self)[src]

pub fn has_identifier_value(&self) -> bool[src]

pub fn set_identifier_value(&mut self, v: String)[src]

pub fn mut_identifier_value(&mut self) -> &mut String[src]

pub fn take_identifier_value(&mut self) -> String[src]

pub fn get_positive_int_value(&self) -> u64[src]

pub fn clear_positive_int_value(&mut self)[src]

pub fn has_positive_int_value(&self) -> bool[src]

pub fn set_positive_int_value(&mut self, v: u64)[src]

pub fn get_negative_int_value(&self) -> i64[src]

pub fn clear_negative_int_value(&mut self)[src]

pub fn has_negative_int_value(&self) -> bool[src]

pub fn set_negative_int_value(&mut self, v: i64)[src]

pub fn get_double_value(&self) -> f64[src]

pub fn clear_double_value(&mut self)[src]

pub fn has_double_value(&self) -> bool[src]

pub fn set_double_value(&mut self, v: f64)[src]

pub fn get_string_value(&self) -> &[u8]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

pub fn clear_string_value(&mut self)[src]

pub fn has_string_value(&self) -> bool[src]

pub fn set_string_value(&mut self, v: Vec<u8>)[src]

pub fn mut_string_value(&mut self) -> &mut Vec<u8>[src]

pub fn take_string_value(&mut self) -> Vec<u8>[src]

pub fn get_aggregate_value(&self) -> &str[src]

pub fn clear_aggregate_value(&mut self)[src]

pub fn has_aggregate_value(&self) -> bool[src]

pub fn set_aggregate_value(&mut self, v: String)[src]

pub fn mut_aggregate_value(&mut self) -> &mut String[src]

pub fn take_aggregate_value(&mut self) -> String[src]

Trait Implementations

impl Clear for UninterpretedOption[src]

impl Clone for UninterpretedOption[src]

impl Debug for UninterpretedOption[src]

impl Default for UninterpretedOption[src]

impl<'a> Default for &'a UninterpretedOption[src]

impl<'de> Deserialize<'de> for UninterpretedOption[src]

impl Message for UninterpretedOption[src]

impl PartialEq<UninterpretedOption> for UninterpretedOption[src]

impl ProtobufValue for UninterpretedOption[src]

impl Serialize for UninterpretedOption[src]

impl StructuralPartialEq for UninterpretedOption[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.