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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".