Struct protoc::Args [] [src]

pub struct Args<'a> {
    pub lang: &'a str,
    pub out_dir: &'a str,
    pub plugin: Option<&'a str>,
    pub includes: &'a [&'a str],
    pub input: &'a [&'a str],
}

Protoc --lang_out... args

Fields

LANG part in --LANG_out=...

--LANG_out=... param

--plugin param. Not needed if plugin is in $PATH

-I args

List of .proto files to compile

Trait Implementations

impl<'a> Default for Args<'a>
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl<'a> Send for Args<'a>

impl<'a> Sync for Args<'a>