Struct prost_types::MethodOptions [−][src]
pub struct MethodOptions {
pub deprecated: Option<bool>,
pub idempotency_level: Option<i32>,
pub uninterpreted_option: Vec<UninterpretedOption>,
}Fields
deprecated: Option<bool>
Is this method deprecated? Depending on the target platform, this can emit Deprecated annotations for the method, or it will be completely ignored; in the very least, this is a formalization for deprecating methods.
idempotency_level: Option<i32>
uninterpreted_option: Vec<UninterpretedOption>
The parser stores options it doesn't recognize here. See above.
Methods
impl MethodOptions[src]
impl MethodOptionspub fn deprecated(&self) -> bool[src]
pub fn deprecated(&self) -> boolpub fn idempotency_level(&self) -> IdempotencyLevel[src]
pub fn idempotency_level(&self) -> IdempotencyLevelpub fn set_idempotency_level(&mut self, value: IdempotencyLevel)[src]
pub fn set_idempotency_level(&mut self, value: IdempotencyLevel)Trait Implementations
impl Message for MethodOptions[src]
impl Message for MethodOptionsfn 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 MethodOptions[src]
impl Default for MethodOptionsfn default() -> MethodOptions[src]
fn default() -> MethodOptionsReturns the "default value" for a type. Read more
impl Debug for MethodOptions[src]
impl Debug for MethodOptionsfn 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 MethodOptions[src]
impl Clone for MethodOptionsfn clone(&self) -> MethodOptions[src]
fn clone(&self) -> MethodOptionsReturns 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 MethodOptions[src]
impl PartialEq for MethodOptionsfn eq(&self, other: &MethodOptions) -> bool[src]
fn eq(&self, other: &MethodOptions) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &MethodOptions) -> bool[src]
fn ne(&self, other: &MethodOptions) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for MethodOptions
impl Send for MethodOptionsimpl Sync for MethodOptions
impl Sync for MethodOptions