pub struct BuildPlan {
pub invocations: Vec<Invocation>,
pub inputs: Vec<PathBuf>,
}
Expand description
A build plan output by cargo build --build-plan
.
Fields§
§invocations: Vec<Invocation>
Program invocations needed to build the target (along with dependency information).
inputs: Vec<PathBuf>
List of Cargo manifests involved in the build.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BuildPlan
impl<'de> Deserialize<'de> for BuildPlan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BuildPlan
impl RefUnwindSafe for BuildPlan
impl Send for BuildPlan
impl Sync for BuildPlan
impl Unpin for BuildPlan
impl UnwindSafe for BuildPlan
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more