Skip to main content

ProcessStreamConfig

Trait ProcessStreamConfig 

Source
pub trait ProcessStreamConfig<Stream>: Sealed<Stream>
where Stream: OutputStream,
{ }
Expand description

Marker trait for process stream builder configurations.

This trait is sealed. External crates cannot implement additional process stream configuration types; use ProcessStreamBuilder to select one of the supported backends.

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.

Implementors§

Source§

impl<Config, Stream> ProcessStreamConfig<Stream> for Config
where Config: Sealed<Stream>, Stream: OutputStream,