arrow2::scalarTrait Scalar
Source pub trait Scalar:
Debug
+ Send
+ Sync
+ DynClone
+ 'static {
// Required methods
fn as_any(&self) -> &dyn Any;
fn is_valid(&self) -> bool;
fn data_type(&self) -> &DataType;
}
Expand description
Trait object declaring an optional value with a DataType
.
This strait is often used in APIs that accept multiple scalar types.
Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient,
and should not be overridden without very good reason.
Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient,
and should not be overridden without very good reason.
Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient,
and should not be overridden without very good reason.