Struct protobuf::descriptor::GeneratedCodeInfo
source · [−]pub struct GeneratedCodeInfo {
pub annotation: Vec<Annotation>,
pub special_fields: SpecialFields,
}
Expand description
Describes the relationship between generated code and its original source file. A GeneratedCodeInfo message is associated with only one generated source file, but may contain references to different source .proto files.
Fields
annotation: Vec<Annotation>
An Annotation connects some span of text in generated code to an element of its generating .proto file.
special_fields: SpecialFields
Implementations
sourceimpl GeneratedCodeInfo
impl GeneratedCodeInfo
pub fn new() -> GeneratedCodeInfo
Trait Implementations
sourceimpl Clone for GeneratedCodeInfo
impl Clone for GeneratedCodeInfo
sourcefn clone(&self) -> GeneratedCodeInfo
fn clone(&self) -> GeneratedCodeInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GeneratedCodeInfo
impl Debug for GeneratedCodeInfo
sourceimpl Default for GeneratedCodeInfo
impl Default for GeneratedCodeInfo
sourcefn default() -> GeneratedCodeInfo
fn default() -> GeneratedCodeInfo
Returns the “default value” for a type. Read more
sourceimpl<'a> Default for &'a GeneratedCodeInfo
impl<'a> Default for &'a GeneratedCodeInfo
sourcefn default() -> &'a GeneratedCodeInfo
fn default() -> &'a GeneratedCodeInfo
Returns the “default value” for a type. Read more
sourceimpl Display for GeneratedCodeInfo
impl Display for GeneratedCodeInfo
sourceimpl Message for GeneratedCodeInfo
impl Message for GeneratedCodeInfo
sourceconst NAME: &'static str = "GeneratedCodeInfo"
const NAME: &'static str = "GeneratedCodeInfo"
Message name as specified in .proto
file. Read more
sourcefn is_initialized(&self) -> bool
fn is_initialized(&self) -> bool
True iff all required fields are initialized.
Always returns true
for protobuf 3. Read more
sourcefn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> Result<()>
fn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> Result<()>
Update this message object with fields read from given stream.
sourcefn compute_size(&self) -> u64
fn compute_size(&self) -> u64
Compute and cache size of this message and all nested messages. Read more
sourcefn write_to_with_cached_sizes(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
fn write_to_with_cached_sizes(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
Write message to the stream. Read more
sourcefn special_fields(&self) -> &SpecialFields
fn special_fields(&self) -> &SpecialFields
Special fields (unknown fields and cached size).
sourcefn mut_special_fields(&mut self) -> &mut SpecialFields
fn mut_special_fields(&mut self) -> &mut SpecialFields
Special fields (unknown fields and cached size).
sourcefn new() -> GeneratedCodeInfo
fn new() -> GeneratedCodeInfo
Create an empty message object. Read more
sourcefn default_instance() -> &'static GeneratedCodeInfo
fn default_instance() -> &'static GeneratedCodeInfo
Return a pointer to default immutable message with static lifetime. Read more
sourcefn parse_from(is: &mut CodedInputStream<'_>) -> Result<Self>
fn parse_from(is: &mut CodedInputStream<'_>) -> Result<Self>
Parse message from stream.
sourcefn cached_size(&self) -> u32
fn cached_size(&self) -> u32
Get size previously computed by compute_size
. Read more
sourcefn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<()>
fn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<()>
Write the message to the stream. Read more
sourcefn write_length_delimited_to(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
fn write_length_delimited_to(
&self,
os: &mut CodedOutputStream<'_>
) -> Result<()>
Write the message to the stream prepending the message with message length encoded as varint. Read more
sourcefn write_length_delimited_to_vec(&self, vec: &mut Vec<u8>) -> Result<()>
fn write_length_delimited_to_vec(&self, vec: &mut Vec<u8>) -> Result<()>
Write the message to the vec, prepend the message with message length encoded as varint. Read more
sourcefn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<()>
fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<()>
Update this message object with fields read from given stream.
sourcefn parse_from_reader(reader: &mut dyn Read) -> Result<Self>
fn parse_from_reader(reader: &mut dyn Read) -> Result<Self>
Parse message from reader. Parse stops on EOF or when error encountered. Read more
sourcefn parse_from_tokio_bytes(bytes: &Bytes) -> Result<Self>
fn parse_from_tokio_bytes(bytes: &Bytes) -> Result<Self>
Parse message from Bytes
object.
Resulting message may share references to the passed bytes object. Read more
sourcefn check_initialized(&self) -> Result<()>
fn check_initialized(&self) -> Result<()>
Check if all required fields of this object are initialized.
sourcefn write_to_writer(&self, w: &mut dyn Write) -> Result<()>
fn write_to_writer(&self, w: &mut dyn Write) -> Result<()>
Write the message to the writer.
sourcefn write_length_delimited_to_writer(&self, w: &mut dyn Write) -> Result<()>
fn write_length_delimited_to_writer(&self, w: &mut dyn Write) -> Result<()>
Write the message to the writer, prepend the message with message length encoded as varint. Read more
sourcefn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>>
fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>>
Write the message to the bytes vec, prepend the message with message length encoded as varint. Read more
sourcefn unknown_fields(&self) -> &UnknownFields
fn unknown_fields(&self) -> &UnknownFields
Get a reference to unknown fields.
sourcefn mut_unknown_fields(&mut self) -> &mut UnknownFields
fn mut_unknown_fields(&mut self) -> &mut UnknownFields
Get a mutable reference to unknown fields.
sourceimpl MessageFull for GeneratedCodeInfo
impl MessageFull for GeneratedCodeInfo
sourcefn descriptor() -> MessageDescriptor
fn descriptor() -> MessageDescriptor
Get message descriptor for message type. Read more
sourcefn reflect_eq(&self, other: &Self, mode: &ReflectEqMode) -> bool
fn reflect_eq(&self, other: &Self, mode: &ReflectEqMode) -> bool
Reflective equality. Read more
sourceimpl PartialEq<GeneratedCodeInfo> for GeneratedCodeInfo
impl PartialEq<GeneratedCodeInfo> for GeneratedCodeInfo
sourcefn eq(&self, other: &GeneratedCodeInfo) -> bool
fn eq(&self, other: &GeneratedCodeInfo) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GeneratedCodeInfo) -> bool
fn ne(&self, other: &GeneratedCodeInfo) -> bool
This method tests for !=
.
sourceimpl ProtobufValue for GeneratedCodeInfo
impl ProtobufValue for GeneratedCodeInfo
type RuntimeType = RuntimeTypeMessage<GeneratedCodeInfo>
type RuntimeType = RuntimeTypeMessage<GeneratedCodeInfo>
Actual implementation of type properties.
impl StructuralPartialEq for GeneratedCodeInfo
Auto Trait Implementations
impl RefUnwindSafe for GeneratedCodeInfo
impl Send for GeneratedCodeInfo
impl Sync for GeneratedCodeInfo
impl Unpin for GeneratedCodeInfo
impl UnwindSafe for GeneratedCodeInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more