pub enum Action {
Help,
Version,
PrintConfig(Box<Options>),
PrintPlan(Box<Plan>),
Compile {
opts: Box<Options>,
plan: Box<Plan>,
jobs: Jobs,
verbose: bool,
},
}Expand description
What the command line asked for.
Variants§
Help
Print usage and exit successfully.
Version
Print the version and exit successfully.
PrintConfig(Box<Options>)
Print the resolved configuration and exit successfully.
PrintPlan(Box<Plan>)
Print the phase plan and exit successfully, which is what -### asks for.
Compile
Compile the given inputs.
Trait Implementations§
impl Eq for Action
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnsafeUnpin for Action
impl UnwindSafe for Action
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