pub trait CategoricalMergeOperation {
    // Required method
    fn finish(
        self,
        lhs: &UInt32Chunked,
        rhs: &UInt32Chunked
    ) -> PolarsResult<UInt32Chunked>;
}Available on crate feature 
dtype-categorical only.