Struct protoc_rust_grpc::Codegen[][src]

pub struct Codegen { /* fields omitted */ }

Utility to generate .rs files.

Implementations

impl Codegen[src]

pub fn new() -> Codegen[src]

Create new codegen object.

pub fn out_dir(&mut self, out_dir: impl AsRef<Path>) -> &mut Self[src]

Set --LANG_out=... param

pub fn include(&mut self, include: impl AsRef<Path>) -> &mut Self[src]

Append a path to -I args

pub fn includes(
    &mut self,
    includes: impl IntoIterator<Item = impl AsRef<Path>>
) -> &mut Self
[src]

Append multiple paths to -I args

pub fn input(&mut self, input: impl AsRef<Path>) -> &mut Self[src]

Append a .proto file path to compile

pub fn inputs(
    &mut self,
    inputs: impl IntoIterator<Item = impl AsRef<Path>>
) -> &mut Self
[src]

Append multiple .proto file paths to compile

pub fn rust_protobuf(&mut self, rust_protobuf: bool) -> &mut Self[src]

Generate rust-protobuf files along with rust-gprc

pub fn rust_protobuf_customize(
    &mut self,
    rust_protobuf_customize: Customize
) -> &mut Self
[src]

Generate rust-protobuf files along with rust-gprc

pub fn run(&self) -> Result<()>[src]

Run the codegen.

Generate _grpc.rs files, and if rust_protobuf_customize is specified, generate rust-protobuf .rs files too.

Trait Implementations

impl Debug for Codegen[src]

impl Default for Codegen[src]

Auto Trait Implementations

impl RefUnwindSafe for Codegen

impl Send for Codegen

impl Sync for Codegen

impl Unpin for Codegen

impl UnwindSafe for Codegen

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,