pub trait AsOfRowEncoding:
'static
+ Send
+ Sync {
type Encoded: EstimateSize + Clone + Send + Sync;
// Required methods
fn encode(row: &OwnedRow) -> Self::Encoded;
fn decode(encoded: &Self::Encoded, data_types: &[DataType]) -> OwnedRow;
}Expand description
Trait for encoding/decoding cached AsOf join rows.
Unlike JoinEncoding, this doesn’t carry degree since AsOf join has no degree tracking.
Required Associated Types§
Required Methods§
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.