Enum polars::chunked_array::object::datatypes::RevMappingBuilder
source · [−]pub enum RevMappingBuilder {
Global(HashMap<u32, u32, RandomState, Global>, MutableUtf8Array<i64>, u128),
Local(MutableUtf8Array<i64>),
}
This is supported on crate feature
object
only.Variants
Global(HashMap<u32, u32, RandomState, Global>, MutableUtf8Array<i64>, u128)
Hashmap: maps the indexes from the global cache/categorical array to indexes in the local Utf8Array Utf8Array: caches the string values
Local(MutableUtf8Array<i64>)
Utf8Array: caches the string values
Auto Trait Implementations
impl RefUnwindSafe for RevMappingBuilder
impl Send for RevMappingBuilder
impl Sync for RevMappingBuilder
impl Unpin for RevMappingBuilder
impl UnwindSafe for RevMappingBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more