Struct arrow_integration_test::ArrowJsonField
source · pub struct ArrowJsonField {
pub name: String,
pub field_type: Value,
pub nullable: bool,
pub children: Vec<ArrowJsonField>,
pub dictionary: Option<ArrowJsonFieldDictionary>,
pub metadata: Option<Value>,
}Expand description
Fields are left as JSON Value as they vary by DataType
Fields§
§name: String§field_type: Value§nullable: bool§children: Vec<ArrowJsonField>§dictionary: Option<ArrowJsonFieldDictionary>§metadata: Option<Value>Trait Implementations§
source§impl Debug for ArrowJsonField
impl Debug for ArrowJsonField
source§impl<'de> Deserialize<'de> for ArrowJsonField
impl<'de> Deserialize<'de> for ArrowJsonField
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