Module conch_runtime::spawn::builtin[][src]

Defines methods for spawning shell builtin commands

Structs

Cd

Represents a cd builtin command which will change the current working directory.

CdFuture

A future representing a fully spawned cd builtin command which no longer requires an environment to run.

Colon

Represents a : builtin command.

Echo

Represents a echo builtin command which will print out its arguments joined by a space.

EchoFuture

A future representing a fully spawned echo builtin command which no longer requires an environment to run.

False

Represents a false builtin command.

Pwd

Represents a pwd builtin command which will print out the current working directory.

PwdFuture

A future representing a fully spawned pwd builtin command which no longer requires an environment to run.

Shift

Represents a shift builtin command.

SpawnedCd

A future representing a fully spawned cd builtin command.

SpawnedColon

A future representing a fully spawned : builtin command.

SpawnedEcho

A future representing a fully spawned echo builtin command.

SpawnedFalse

A future representing a fully spawned false builtin command.

SpawnedPwd

A future representing a fully spawned pwd builtin command.

SpawnedShift

A future representing a fully spawned shift builtin command.

SpawnedTrue

A future representing a fully spawned true builtin command.

True

Represents a true builtin command.

Functions

cd

Creates a new cd builtin command with the provided arguments.

colon

Creates a new : builtin command.

echo

Creates a new echo builtin command with the provided arguments.

false_cmd

Creates a new false builtin command.

pwd

Creates a new pwd builtin command with the provided arguments.

shift

Creates a new shift builtin command with the provided arguments.

true_cmd

Creates a new true builtin command.