Struct conch_runtime::spawn::builtin::False
[−]
[src]
pub struct False;
Represents a false builtin command.
The false command has no effect and always exits unsuccessfully.
Trait Implementations
impl Debug for False[src]
impl PartialEq for False[src]
fn eq(&self, __arg_0: &False) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Eq for False[src]
impl Clone for False[src]
fn clone(&self) -> False[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for False[src]
impl<E: ?Sized> Spawn<E> for False[src]
type EnvFuture = SpawnedFalse
The future that represents spawning the command. Read more
type Future = ExitStatus
The future that represents the exit status of a fully bootstrapped command, which no longer requires an environment to be driven to completion. Read more
type Error = Void
The type of error that a future will resolve with if it fails in a normal fashion. Read more
fn spawn(self, _env: &E) -> Self::EnvFuture[src]
Spawn the command as a future. Read more