pub trait CombinableReader: Sealed {
type ToBeRead: 'static;
}
Expand description
A marker trait for types that can be used with CombineReaders
, see that for more details.
Required Associated Types§
Sourcetype ToBeRead: 'static
type ToBeRead: 'static
The (owned) type that this type reads, will be exposed as a reference in the CombineReaders::read
callback.
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.