1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
use super::{DataType, Metadata};
#[cfg(feature = "serde_types")]
use serde_derive::{Deserialize, Serialize};
/// Represents Arrow's metadata of a "column".
///
/// A [`Field`] is the closest representation of the traditional "column": a logical type
/// ([`DataType`]) with a name and nullability.
/// A Field has optional [`Metadata`] that can be used to annotate the field with custom metadata.
///
/// Almost all IO in this crate uses [`Field`] to represent logical information about the data
/// to be serialized.
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
#[cfg_attr(feature = "serde_types", derive(Serialize, Deserialize))]
pub struct Field {
/// Its name
pub name: String,
/// Its logical [`DataType`]
pub data_type: DataType,
/// Its nullability
pub is_nullable: bool,
/// Additional custom (opaque) metadata.
pub metadata: Metadata,
}
impl Field {
/// Creates a new [`Field`].
pub fn new<T: Into<String>>(name: T, data_type: DataType, is_nullable: bool) -> Self {
Field {
name: name.into(),
data_type,
is_nullable,
metadata: Default::default(),
}
}
/// Creates a new [`Field`] with metadata.
#[inline]
pub fn with_metadata(self, metadata: Metadata) -> Self {
Self {
name: self.name,
data_type: self.data_type,
is_nullable: self.is_nullable,
metadata,
}
}
/// Returns the [`Field`]'s [`DataType`].
#[inline]
pub fn data_type(&self) -> &DataType {
&self.data_type
}
}