Struct conch_runtime::spawn::builtin::Colon [−][src]
pub struct Colon;
Represents a : builtin command.
The : command has no effect, and exists as a placeholder for word
and redirection expansions.
Trait Implementations
impl Debug for Colon[src]
impl Debug for Colonfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Colon[src]
impl PartialEq for Colonfn eq(&self, other: &Colon) -> bool[src]
fn eq(&self, other: &Colon) -> boolThis 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]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Eq for Colon[src]
impl Eq for Colonimpl Clone for Colon[src]
impl Clone for Colonfn clone(&self) -> Colon[src]
fn clone(&self) -> ColonReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for Colon[src]
impl Copy for Colonimpl<E: ?Sized> Spawn<E> for Colon[src]
impl<E: ?Sized> Spawn<E> for Colontype EnvFuture = SpawnedColon
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]
fn spawn(self, _env: &E) -> Self::EnvFutureSpawn the command as a future. Read more