Struct prost_types::FileDescriptorProto [−][src]
pub struct FileDescriptorProto {
pub name: Option<String>,
pub package: Option<String>,
pub dependency: Vec<String>,
pub public_dependency: Vec<i32>,
pub weak_dependency: Vec<i32>,
pub message_type: Vec<DescriptorProto>,
pub enum_type: Vec<EnumDescriptorProto>,
pub service: Vec<ServiceDescriptorProto>,
pub extension: Vec<FieldDescriptorProto>,
pub options: Option<FileOptions>,
pub source_code_info: Option<SourceCodeInfo>,
pub syntax: Option<String>,
}Describes a complete .proto file.
Fields
name: Option<String>
file name, relative to root of source tree
package: Option<String>
e.g. "foo", "foo.bar", etc.
dependency: Vec<String>
Names of files imported by this file.
public_dependency: Vec<i32>
Indexes of the public imported files in the dependency list above.
weak_dependency: Vec<i32>
Indexes of the weak imported files in the dependency list. For Google-internal migration only. Do not use.
message_type: Vec<DescriptorProto>
All top-level definitions in this file.
enum_type: Vec<EnumDescriptorProto>
service: Vec<ServiceDescriptorProto>
extension: Vec<FieldDescriptorProto>
options: Option<FileOptions>
source_code_info: Option<SourceCodeInfo>
This field contains optional information about the original source code. You may safely remove this entire field without harming runtime functionality of the descriptors -- the information is needed only by development tools.
syntax: Option<String>
The syntax of the proto file. The supported values are "proto2" and "proto3".
Methods
impl FileDescriptorProto[src]
impl FileDescriptorProtoTrait Implementations
impl Message for FileDescriptorProto[src]
impl Message for FileDescriptorProtofn 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 FileDescriptorProto[src]
impl Default for FileDescriptorProtofn default() -> FileDescriptorProto[src]
fn default() -> FileDescriptorProtoReturns the "default value" for a type. Read more
impl Debug for FileDescriptorProto[src]
impl Debug for FileDescriptorProtofn 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 FileDescriptorProto[src]
impl Clone for FileDescriptorProtofn clone(&self) -> FileDescriptorProto[src]
fn clone(&self) -> FileDescriptorProtoReturns 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 FileDescriptorProto[src]
impl PartialEq for FileDescriptorProtofn eq(&self, other: &FileDescriptorProto) -> bool[src]
fn eq(&self, other: &FileDescriptorProto) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &FileDescriptorProto) -> bool[src]
fn ne(&self, other: &FileDescriptorProto) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for FileDescriptorProto
impl Send for FileDescriptorProtoimpl Sync for FileDescriptorProto
impl Sync for FileDescriptorProto