struct DictionaryEncoder<'a, K: ArrowDictionaryKeyType> {
keys: ScalarBuffer<K::Native>,
encoder: Box<dyn Encoder + 'a>,
}
Fields§
§keys: ScalarBuffer<K::Native>
§encoder: Box<dyn Encoder + 'a>
Implementations§
Source§impl<'a, K: ArrowDictionaryKeyType> DictionaryEncoder<'a, K>
impl<'a, K: ArrowDictionaryKeyType> DictionaryEncoder<'a, K>
fn try_new( array: &'a DictionaryArray<K>, options: &EncoderOptions, ) -> Result<Self, ArrowError>
Trait Implementations§
Auto Trait Implementations§
impl<'a, K> Freeze for DictionaryEncoder<'a, K>
impl<'a, K> !RefUnwindSafe for DictionaryEncoder<'a, K>
impl<'a, K> !Send for DictionaryEncoder<'a, K>
impl<'a, K> !Sync for DictionaryEncoder<'a, K>
impl<'a, K> Unpin for DictionaryEncoder<'a, K>where
<K as ArrowPrimitiveType>::Native: Unpin,
impl<'a, K> !UnwindSafe for DictionaryEncoder<'a, K>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more