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§

source

const DYN: DynOutput

Corresponding DynOutput

Implementors§

source§

impl OutputConfig for PushPull

source§

const DYN: DynOutput = DynOutput::PushPull

source§

impl OutputConfig for Readable

source§

const DYN: DynOutput = DynOutput::Readable