pub trait OutputConfig: Sealed {
const DYN: DynOutput;
}
Expand description
Type-level enum for output configurations
The valid options are PushPull
and Readable
. See the type-level
enum documentation for more details on the pattern.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.