pub struct DictionaryIndexType {
pub name: String,
pub is_signed: bool,
pub bit_width: i64,
}
Expand description
Type of an index for a dictionary-encoded field in the Arrow JSON format
Fields§
§name: String
The name of the dictionary index type
is_signed: bool
Whether the dictionary index type is signed
bit_width: i64
The bit width of the dictionary index type
Trait Implementations§
Source§impl Debug for DictionaryIndexType
impl Debug for DictionaryIndexType
Source§impl<'de> Deserialize<'de> for DictionaryIndexType
impl<'de> Deserialize<'de> for DictionaryIndexType
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 DictionaryIndexType
impl RefUnwindSafe for DictionaryIndexType
impl Send for DictionaryIndexType
impl Sync for DictionaryIndexType
impl Unpin for DictionaryIndexType
impl UnwindSafe for DictionaryIndexType
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