Struct targets::Target [] [src]

pub struct Target<'a> {
    pub key: String,
    pub dependencies: Vec<&'a Target<'a>>,
    pub build_order: Vec<&'a Target<'a>>,
    pub recipe: fn(_: Vec<&Box<Any>>) -> Box<Any>,
}

Fields

Methods

impl<'a> Target<'a>
[src]

[src]

Trait Implementations

impl<'a> Debug for Target<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> PartialEq for Target<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations

impl<'a> Send for Target<'a>

impl<'a> Sync for Target<'a>