Struct prost_types::MethodDescriptorProto [−][src]
pub struct MethodDescriptorProto {
pub name: Option<String>,
pub input_type: Option<String>,
pub output_type: Option<String>,
pub options: Option<MethodOptions>,
pub client_streaming: Option<bool>,
pub server_streaming: Option<bool>,
}Describes a method of a service.
Fields
name: Option<String>
input_type: Option<String>
Input and output type names. These are resolved in the same way as FieldDescriptorProto.type_name, but must refer to a message type.
output_type: Option<String>
options: Option<MethodOptions>
client_streaming: Option<bool>
Identifies if client streams multiple client messages
server_streaming: Option<bool>
Identifies if server streams multiple server messages
Methods
impl MethodDescriptorProto[src]
impl MethodDescriptorProtopub fn name(&self) -> &str[src]
pub fn name(&self) -> &strpub fn input_type(&self) -> &str[src]
pub fn input_type(&self) -> &strpub fn output_type(&self) -> &str[src]
pub fn output_type(&self) -> &strpub fn client_streaming(&self) -> bool[src]
pub fn client_streaming(&self) -> boolpub fn server_streaming(&self) -> bool[src]
pub fn server_streaming(&self) -> boolTrait Implementations
impl Message for MethodDescriptorProto[src]
impl Message for MethodDescriptorProtofn 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 MethodDescriptorProto[src]
impl Default for MethodDescriptorProtofn default() -> MethodDescriptorProto[src]
fn default() -> MethodDescriptorProtoReturns the "default value" for a type. Read more
impl Debug for MethodDescriptorProto[src]
impl Debug for MethodDescriptorProtofn 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 MethodDescriptorProto[src]
impl Clone for MethodDescriptorProtofn clone(&self) -> MethodDescriptorProto[src]
fn clone(&self) -> MethodDescriptorProtoReturns 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 MethodDescriptorProto[src]
impl PartialEq for MethodDescriptorProtofn eq(&self, other: &MethodDescriptorProto) -> bool[src]
fn eq(&self, other: &MethodDescriptorProto) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &MethodDescriptorProto) -> bool[src]
fn ne(&self, other: &MethodDescriptorProto) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for MethodDescriptorProto
impl Send for MethodDescriptorProtoimpl Sync for MethodDescriptorProto
impl Sync for MethodDescriptorProto