Struct protobuf::plugin::CodeGeneratorResponse
source · [−]pub struct CodeGeneratorResponse {
pub error: Option<String>,
pub supported_features: Option<u64>,
pub file: Vec<File>,
pub special_fields: SpecialFields,
}
Expand description
The plugin writes an encoded CodeGeneratorResponse to stdout.
Fields
error: Option<String>
Error message. If non-empty, code generation failed. The plugin process should exit with status code zero even if it reports an error in this way.
This should be used to indicate errors in .proto files which prevent the code generator from generating correct code. Errors which indicate a problem in protoc itself – such as the input CodeGeneratorRequest being unparseable – should be reported by writing a message to stderr and exiting with a non-zero status code.
supported_features: Option<u64>
A bitmask of supported features that the code generator supports. This is a bitwise “or” of values from the Feature enum.
file: Vec<File>
special_fields: SpecialFields
Implementations
sourceimpl CodeGeneratorResponse
impl CodeGeneratorResponse
pub fn new() -> CodeGeneratorResponse
pub fn error(&self) -> &str
pub fn clear_error(&mut self)
pub fn has_error(&self) -> bool
pub fn set_error(&mut self, v: String)
pub fn mut_error(&mut self) -> &mut String
pub fn take_error(&mut self) -> String
pub fn supported_features(&self) -> u64
pub fn clear_supported_features(&mut self)
pub fn has_supported_features(&self) -> bool
pub fn set_supported_features(&mut self, v: u64)
Trait Implementations
sourceimpl Clone for CodeGeneratorResponse
impl Clone for CodeGeneratorResponse
sourcefn clone(&self) -> CodeGeneratorResponse
fn clone(&self) -> CodeGeneratorResponse
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 CodeGeneratorResponse
impl Debug for CodeGeneratorResponse
sourceimpl Default for CodeGeneratorResponse
impl Default for CodeGeneratorResponse
sourcefn default() -> CodeGeneratorResponse
fn default() -> CodeGeneratorResponse
Returns the “default value” for a type. Read more
sourceimpl<'a> Default for &'a CodeGeneratorResponse
impl<'a> Default for &'a CodeGeneratorResponse
sourcefn default() -> &'a CodeGeneratorResponse
fn default() -> &'a CodeGeneratorResponse
Returns the “default value” for a type. Read more
sourceimpl Display for CodeGeneratorResponse
impl Display for CodeGeneratorResponse
sourceimpl Message for CodeGeneratorResponse
impl Message for CodeGeneratorResponse
sourceconst NAME: &'static str = "CodeGeneratorResponse"
const NAME: &'static str = "CodeGeneratorResponse"
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() -> CodeGeneratorResponse
fn new() -> CodeGeneratorResponse
Create an empty message object. Read more
sourcefn default_instance() -> &'static CodeGeneratorResponse
fn default_instance() -> &'static CodeGeneratorResponse
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 CodeGeneratorResponse
impl MessageFull for CodeGeneratorResponse
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<CodeGeneratorResponse> for CodeGeneratorResponse
impl PartialEq<CodeGeneratorResponse> for CodeGeneratorResponse
sourcefn eq(&self, other: &CodeGeneratorResponse) -> bool
fn eq(&self, other: &CodeGeneratorResponse) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CodeGeneratorResponse) -> bool
fn ne(&self, other: &CodeGeneratorResponse) -> bool
This method tests for !=
.
sourceimpl ProtobufValue for CodeGeneratorResponse
impl ProtobufValue for CodeGeneratorResponse
type RuntimeType = RuntimeTypeMessage<CodeGeneratorResponse>
type RuntimeType = RuntimeTypeMessage<CodeGeneratorResponse>
Actual implementation of type properties.
impl StructuralPartialEq for CodeGeneratorResponse
Auto Trait Implementations
impl RefUnwindSafe for CodeGeneratorResponse
impl Send for CodeGeneratorResponse
impl Sync for CodeGeneratorResponse
impl Unpin for CodeGeneratorResponse
impl UnwindSafe for CodeGeneratorResponse
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