polars_arrow/scalar/
binary.rsuse super::Scalar;
use crate::datatypes::ArrowDataType;
use crate::offset::Offset;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct BinaryScalar<O: Offset> {
value: Option<Vec<u8>>,
phantom: std::marker::PhantomData<O>,
}
impl<O: Offset> BinaryScalar<O> {
#[inline]
pub fn new<P: Into<Vec<u8>>>(value: Option<P>) -> Self {
Self {
value: value.map(|x| x.into()),
phantom: std::marker::PhantomData,
}
}
#[inline]
pub fn value(&self) -> Option<&[u8]> {
self.value.as_ref().map(|x| x.as_ref())
}
}
impl<O: Offset, P: Into<Vec<u8>>> From<Option<P>> for BinaryScalar<O> {
#[inline]
fn from(v: Option<P>) -> Self {
Self::new(v)
}
}
impl<O: Offset> Scalar for BinaryScalar<O> {
#[inline]
fn as_any(&self) -> &dyn std::any::Any {
self
}
#[inline]
fn is_valid(&self) -> bool {
self.value.is_some()
}
#[inline]
fn dtype(&self) -> &ArrowDataType {
if O::IS_LARGE {
&ArrowDataType::LargeBinary
} else {
&ArrowDataType::Binary
}
}
}