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
source§impl From<&Arc<Field>> for ArrowJsonField
impl From<&Arc<Field>> for ArrowJsonField
source§impl From<&Field> for ArrowJsonField
impl From<&Field> for ArrowJsonField
Auto Trait Implementations§
impl RefUnwindSafe for ArrowJsonField
impl Send for ArrowJsonField
impl Sync for ArrowJsonField
impl Unpin for ArrowJsonField
impl UnwindSafe for ArrowJsonField
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