use polars_utils::pl_str::PlSmallStr;
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
use super::{ArrowDataType, Metadata};
#[derive(Debug, Clone, Eq, PartialEq, Hash, Default)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct Field {
pub name: PlSmallStr,
pub dtype: ArrowDataType,
pub is_nullable: bool,
pub metadata: Metadata,
}
impl From<Field> for (PlSmallStr, Field) {
fn from(value: Field) -> Self {
(value.name.clone(), value)
}
}
impl Field {
pub fn new(name: PlSmallStr, dtype: ArrowDataType, is_nullable: bool) -> Self {
Field {
name,
dtype,
is_nullable,
metadata: Default::default(),
}
}
#[inline]
pub fn with_metadata(self, metadata: Metadata) -> Self {
Self {
name: self.name,
dtype: self.dtype,
is_nullable: self.is_nullable,
metadata,
}
}
#[inline]
pub fn dtype(&self) -> &ArrowDataType {
&self.dtype
}
}