Struct protobuf_codegen_pure::Codegen [−][src]
Invoke pure rust codegen. See crate docs for example.
Implementations
impl Codegen[src]
pub fn new() -> Self[src]
Fresh new codegen object.
pub fn out_dir(&mut self, out_dir: impl AsRef<Path>) -> &mut Self[src]
Set the output directory for codegen.
pub fn include(&mut self, include: impl AsRef<Path>) -> &mut Self[src]
Add an include directory.
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
Add include directories.
pub fn input(&mut self, input: impl AsRef<Path>) -> &mut Self[src]
Add an input (.proto file).
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
Add inputs (.proto files).
pub fn customize(&mut self, customize: Customize) -> &mut Self[src]
Specify generated code Customize object.
pub fn run(&self) -> Result<()>[src]
Like protoc --rust_out=... but without requiring protoc or protoc-gen-rust
commands 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,
pub 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.
pub 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>,