pub type NSTDOptionalChildProcess = NSTDOptional<NSTDChildProcess>;
Available on crate feature proc only.
Expand description

Represents an optional value of type NSTDChildProcess.

Aliased Type§

enum NSTDOptionalChildProcess {
    None,
    Some(NSTDChildProcess),
}

Variants§

§

None

The uninitialized variant.

§

Some(NSTDChildProcess)

The initialized variant.