[−][src]Struct protoc_rust::Codegen 
Protoc --rust_out... args
Methods
impl Codegen[src]
pub fn new() -> Self[src]
Arguments to the protoc found in $PATH
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]
&mut self,
includes: impl IntoIterator<Item = impl AsRef<Path>>
) -> &mut Self
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]
&mut self,
inputs: impl IntoIterator<Item = impl AsRef<Path>>
) -> &mut Self
Append multiple .proto file paths to compile
pub fn protoc_path(&mut self, protoc: impl Into<PathBuf>) -> &mut Self[src]
Specify protoc command path to be used when invoking code generation.
Examples
use protoc_rust::Codegen; Codegen::new() .protoc_path(protoc_bin_vendored::protoc_bin_path().unwrap()) // ... .run() .unwrap();
pub fn customize(&mut self, customize: Customize) -> &mut Self[src]
Set options to customize code generation
pub fn run(&self) -> Result<()>[src]
Like protoc --rust_out=... but without requiring protoc-gen-rust command in $PATH.
Trait Implementations
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
V: MultiLane<T>,