pub struct DefaultExecutor;
Expand description
A DefaultExecutor
calls rustc without doing anything else. It is Cargo’s
default behaviour.
Trait Implementations
sourceimpl Clone for DefaultExecutor
impl Clone for DefaultExecutor
sourcefn clone(&self) -> DefaultExecutor
fn clone(&self) -> DefaultExecutor
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Executor for DefaultExecutor
impl Executor for DefaultExecutor
sourcefn exec(
&self,
cmd: &ProcessBuilder,
_id: PackageId,
_target: &Target,
_mode: CompileMode,
on_stdout_line: &mut dyn FnMut(&str) -> CargoResult<()>,
on_stderr_line: &mut dyn FnMut(&str) -> CargoResult<()>
) -> CargoResult<()>
fn exec(
&self,
cmd: &ProcessBuilder,
_id: PackageId,
_target: &Target,
_mode: CompileMode,
on_stdout_line: &mut dyn FnMut(&str) -> CargoResult<()>,
on_stderr_line: &mut dyn FnMut(&str) -> CargoResult<()>
) -> CargoResult<()>
In case of an Err
, Cargo will not continue with the build process for
this package. Read more
sourcefn init(&self, _cx: &Context<'_, '_>, _unit: &Unit)
fn init(&self, _cx: &Context<'_, '_>, _unit: &Unit)
Called after a rustc process invocation is prepared up-front for a given unit of work (may still be modified for runtime-known dependencies, when the work is actually executed). Read more
sourcefn force_rebuild(&self, _unit: &Unit) -> bool
fn force_rebuild(&self, _unit: &Unit) -> bool
Queried when queuing each unit of work. If it returns true, then the unit will always be rebuilt, independent of whether it needs to be. Read more
impl Copy for DefaultExecutor
Auto Trait Implementations
impl RefUnwindSafe for DefaultExecutor
impl Send for DefaultExecutor
impl Sync for DefaultExecutor
impl Unpin for DefaultExecutor
impl UnwindSafe for DefaultExecutor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more