pub trait ChunkAnyValueBypassValidity {
// Required method
unsafe fn get_any_value_bypass_validity(&self, index: usize) -> AnyValue<'_>;
}Required Methods§
Sourceunsafe fn get_any_value_bypass_validity(&self, index: usize) -> AnyValue<'_>
unsafe fn get_any_value_bypass_validity(&self, index: usize) -> AnyValue<'_>
Get a single value bypassing the validity map. Beware this is slow.
§Safety
Does not do any bounds checking.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".