[][src]Struct protobuf::descriptor::MethodOptions

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

Fields

uninterpreted_option: RepeatedField<UninterpretedOption>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl MethodOptions[src][]

pub fn new() -> MethodOptions[src]

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

pub fn clear_deprecated(&mut self)[src]

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

pub fn set_deprecated(&mut self, v: bool)[src]

pub fn get_uninterpreted_option(&self) -> &[UninterpretedOption][src]

pub fn clear_uninterpreted_option(&mut self)[src]

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

pub fn mut_uninterpreted_option(
    &mut self
) -> &mut RepeatedField<UninterpretedOption>
[src]

pub fn take_uninterpreted_option(
    &mut self
) -> RepeatedField<UninterpretedOption>
[src]

Trait Implementations

impl Clear for MethodOptions[src][+]

impl Clone for MethodOptions[src][+]

impl Debug for MethodOptions[src][+]

impl Default for MethodOptions[src][+]

impl<'a> Default for &'a MethodOptions[src][+]

impl Message for MethodOptions[src][+]

impl PartialEq<MethodOptions> for MethodOptions[src][+]

impl ProtobufValue for MethodOptions[src][+]

impl StructuralPartialEq for MethodOptions[src]

Auto Trait Implementations

impl RefUnwindSafe for MethodOptions

impl Send for MethodOptions

impl Sync for MethodOptions

impl Unpin for MethodOptions

impl UnwindSafe for MethodOptions

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> 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.