pub trait DecodeState: Sealed {
type LazyOrParsed<Raw, Parsed>;
}Expand description
Type-state marker for Layer01 and related column wrappers.
Implementors determine how (Raw, Parsed) column pairs are stored:
Lazystores anLazyParsed<Raw, Parsed>enum that can be inRaw,Parsed, orParsingFailedstate.Parsedstores onlyParsed, giving zero-cost infallible field access.
Required Associated Types§
type LazyOrParsed<Raw, Parsed>
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.