pub struct Plan {
pub start: Utf8PathBuf,
pub steps: Vec<(OpRef, Utf8PathBuf)>,
pub workdir: Utf8PathBuf,
pub stdin: bool,
pub stdout: bool,
}Fields§
§start: Utf8PathBufThe input to the first step.
steps: Vec<(OpRef, Utf8PathBuf)>The chain of operations to run and each step’s output file.
workdir: Utf8PathBufThe directory that the build will happen in.
stdin: boolRead the first input from stdin.
stdout: boolWrite the final output to stdout.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Plan
impl RefUnwindSafe for Plan
impl Send for Plan
impl Sync for Plan
impl Unpin for Plan
impl UnwindSafe for Plan
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