pub type CommandArgumentBuilder = Box<dyn FnOnce(&TempDir) -> Box<dyn Future<Output = Result<Vec<OsString>, ConversionError>> + Send + Sync + Unpin + 'static> + Send + Sync>;
Expand description
Callback used by Command::Other
.
Accepts a the temporary directory that can be used to write files to.
Aliased Typeยง
pub struct CommandArgumentBuilder(/* private fields */);