pub trait ResourceRowState {
type StreamedOpenSlot: Default + Debug;
}Expand description
Splits a row’s state by storage class: the Copy bookkeeping struct implements this, naming the non-Copy working state its table stores in a parallel column beside it. The incoming side tracks its streamed open’s OpenProgress there; the outgoing side parks nothing.
Required Associated Types§
type StreamedOpenSlot: Default + Debug
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".