Type Definition tryrun::OutputStr[][src]

type OutputStr = Output<&'static str, &'static str>;
Expand description

A convenience alias of Output with &'static str.

Example

OutputStr {
    stdout: Some("a static string"),
    stderr: Some("a static string"),
}