Struct capnpc::CompilerCommand

source ·
pub struct CompilerCommand { /* private fields */ }
Expand description

A builder object for schema compiler commands.

Implementations§

source§

impl CompilerCommand

source

pub fn new() -> Self

Creates a new, empty command.

source

pub fn file<P>(&mut self, path: P) -> &mut Selfwhere P: AsRef<Path>,

Adds a file to be compiled.

source

pub fn src_prefix<P>(&mut self, prefix: P) -> &mut Selfwhere P: AsRef<Path>,

Adds a –src-prefix flag. For all files specified for compilation that start with prefix, removes the prefix when computing output filenames.

source

pub fn import_path<P>(&mut self, dir: P) -> &mut Selfwhere P: AsRef<Path>,

Adds an –import_path flag. Adds dir to the list of directories searched for absolute imports.

source

pub fn no_standard_import(&mut self) -> &mut Self

Adds the –no-standard-import flag, indicating that the default import paths of /usr/include and /usr/local/include should not bet included.

source

pub fn output_path<P>(&mut self, path: P) -> &mut Selfwhere P: AsRef<Path>,

Sets the output directory of generated code. Default is OUT_DIR

source

pub fn capnp_executable<P>(&mut self, path: P) -> &mut Selfwhere P: AsRef<Path>,

Specify the executable which is used for the ‘capnp’ tool. When this method is not called, the command looks for a name ‘capnp’ on the system (e.g. in working directory or in PATH environment variable).

source

pub fn default_parent_module( &mut self, default_parent_module: Vec<String> ) -> &mut Self

Sets the default parent module. This indicates the scope in your crate where you will add a module containing the generated code. For example, if you set this option to vec!["foo".into(), "bar".into()], and you are generating code for baz.capnp, then your crate should have this structure:

pub mod foo {
   pub mod bar {
       pub mod baz_capnp {
           include!(concat!(env!("OUT_DIR"), "/baz_capnp.rs"));
       }
   }
}

This option can be overridden by the parentModule annotation defined in rust.capnp.

If this option is unset, the default is the crate root.

source

pub fn raw_code_generator_request_path<P>(&mut self, path: P) -> &mut Selfwhere P: AsRef<Path>,

If set, the generator will also write a file containing the raw code generator request to the specified path.

source

pub fn run(&mut self) -> Result<()>

Runs the command. Returns an error if OUT_DIR or a custom output directory was not set, or if capnp compile fails.

Trait Implementations§

source§

impl Default for CompilerCommand

source§

fn default() -> CompilerCommand

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.