pub struct ArrowJsonFieldDictionary {
pub id: i64,
pub index_type: DictionaryIndexType,
pub is_ordered: bool,
}
Expand description
Represents a dictionary-encoded field in the Arrow JSON format
Fields§
§id: i64
A unique identifier for the dictionary
index_type: DictionaryIndexType
The type of the dictionary index
is_ordered: bool
Whether the dictionary is ordered
Trait Implementations§
Source§impl Debug for ArrowJsonFieldDictionary
impl Debug for ArrowJsonFieldDictionary
Source§impl<'de> Deserialize<'de> for ArrowJsonFieldDictionary
impl<'de> Deserialize<'de> for ArrowJsonFieldDictionary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ArrowJsonFieldDictionary
impl RefUnwindSafe for ArrowJsonFieldDictionary
impl Send for ArrowJsonFieldDictionary
impl Sync for ArrowJsonFieldDictionary
impl Unpin for ArrowJsonFieldDictionary
impl UnwindSafe for ArrowJsonFieldDictionary
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