Struct cargo::ops::BuildOutput [] [src]

pub struct BuildOutput {
    pub library_paths: Vec<PathBuf>,
    pub library_links: Vec<String>,
    pub cfgs: Vec<String>,
    pub metadata: Vec<(String, String)>,
    pub rerun_if_changed: Vec<String>,
    pub warnings: Vec<String>,
}

Contains the parsed output of a custom build script.

Fields

library_paths: Vec<PathBuf>

Paths to pass to rustc with the -L flag

library_links: Vec<String>

Names and link kinds of libraries, suitable for the -l flag

cfgs: Vec<String>

Various --cfg flags to pass to the compiler

metadata: Vec<(String, String)>

Metadata to pass to the immediate dependencies

rerun_if_changed: Vec<String>

Glob paths to trigger a rerun of this build script.

warnings: Vec<String>

Warnings generated by this build,

Methods

impl BuildOutput
[src]

fn parse_file(path: &Path, pkg_name: &str) -> CargoResult<BuildOutput>

fn parse(input: &[u8], pkg_name: &str) -> CargoResult<BuildOutput>

fn parse_rustc_flags(value: &str, whence: &str) -> CargoResult<(Vec<PathBuf>, Vec<String>)>

Trait Implementations

impl Hash for BuildOutput
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Debug for BuildOutput
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for BuildOutput
[src]

fn clone(&self) -> BuildOutput

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more