arrow-tiberius 0.1.0

Apache Arrow and SQL Server bridge through Tiberius
Documentation
//! Arrow field metadata model.

use arrow_schema::DataType;

/// Reference to an Arrow source field used by a schema mapping.
///
/// This is this crate's mapped source-field metadata. It is not a replacement
/// for `arrow_schema::Field`.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ArrowFieldRef {
    index: usize,
    name: String,
    nullable: bool,
    data_type: DataType,
}

impl ArrowFieldRef {
    /// Creates an Arrow source field reference.
    pub const fn new(index: usize, name: String, nullable: bool, data_type: DataType) -> Self {
        Self {
            index,
            name,
            nullable,
            data_type,
        }
    }

    /// Returns the Arrow field index.
    pub const fn index(&self) -> usize {
        self.index
    }

    /// Returns the Arrow field name.
    pub fn name(&self) -> &str {
        &self.name
    }

    /// Returns true when the Arrow field is nullable.
    pub const fn nullable(&self) -> bool {
        self.nullable
    }

    /// Returns the Arrow field data type.
    pub const fn data_type(&self) -> &DataType {
        &self.data_type
    }
}