pub trait OutputSpec {
type ChildOutputDesc;
}Expand description
Specifies how test output is represented.
Two implementations exist:
LiveSpec: output stored in memory during live execution.RecordingSpec: output stored in recordings.
Required Associated Types§
Sourcetype ChildOutputDesc
type ChildOutputDesc
The type used to describe child output.