trait CompactableArray: Array {
// Required method
fn compact(&self, visibility: &Bitmap, cardinality: usize) -> Self;
}
Expand description
Implement compact
on array, which removes element according to visibility
.
Required Methods§
Object Safety§
This trait is not object safe.