pub struct TypedDictionary<K, V>where
K: DictionaryKey,
V: LogicalType,{ /* private fields */ }Expand description
The validated representation of a Dictionary column:
the dictionary array plus its downcast values.
Trait Implementations§
Source§impl<K, V> Clone for TypedDictionary<K, V>where
K: DictionaryKey,
V: LogicalType,
impl<K, V> Clone for TypedDictionary<K, V>where
K: DictionaryKey,
V: LogicalType,
Source§fn clone(&self) -> TypedDictionary<K, V>
fn clone(&self) -> TypedDictionary<K, V>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<K, V> !RefUnwindSafe for TypedDictionary<K, V>
impl<K, V> !UnwindSafe for TypedDictionary<K, V>
impl<K, V> Freeze for TypedDictionary<K, V>
impl<K, V> Send for TypedDictionary<K, V>
impl<K, V> Sync for TypedDictionary<K, V>
impl<K, V> Unpin for TypedDictionary<K, V>where
<V as LogicalType>::Typed: Unpin,
<<K as DictionaryKey>::ArrowKeyType as ArrowPrimitiveType>::Native: Unpin,
impl<K, V> UnsafeUnpin for TypedDictionary<K, V>
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