pub struct Plan {
pub start: Utf8PathBuf,
pub steps: Vec<(OpRef, Utf8PathBuf)>,
pub workdir: Utf8PathBuf,
pub stdin: bool,
pub stdout: bool,
}
Fields§
§start: Utf8PathBuf
The input to the first step.
steps: Vec<(OpRef, Utf8PathBuf)>
The chain of operations to run and each step’s output file.
workdir: Utf8PathBuf
The directory that the build will happen in.
stdin: bool
Read the first input from stdin.
stdout: bool
Write 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