Enum datafusion::types::Value [−][src]
pub enum Value { Column(Rc<Array>), Scalar(Rc<ScalarValue>), }
Variants
Column(Rc<Array>)
Scalar(Rc<ScalarValue>)
Methods
impl Value
[src]
impl Value
pub fn is_null(&self) -> Result<Value>
[src]
pub fn is_null(&self) -> Result<Value>
pub fn is_not_null(&self) -> Result<Value>
[src]
pub fn is_not_null(&self) -> Result<Value>
pub fn eq(&self, other: &Value) -> Result<Value>
[src]
pub fn eq(&self, other: &Value) -> Result<Value>
pub fn not_eq(&self, other: &Value) -> Result<Value>
[src]
pub fn not_eq(&self, other: &Value) -> Result<Value>
pub fn lt(&self, other: &Value) -> Result<Value>
[src]
pub fn lt(&self, other: &Value) -> Result<Value>
pub fn lt_eq(&self, other: &Value) -> Result<Value>
[src]
pub fn lt_eq(&self, other: &Value) -> Result<Value>
pub fn gt(&self, other: &Value) -> Result<Value>
[src]
pub fn gt(&self, other: &Value) -> Result<Value>
pub fn gt_eq(&self, other: &Value) -> Result<Value>
[src]
pub fn gt_eq(&self, other: &Value) -> Result<Value>
pub fn add(&self, other: &Value) -> Result<Value>
[src]
pub fn add(&self, other: &Value) -> Result<Value>
pub fn subtract(&self, other: &Value) -> Result<Value>
[src]
pub fn subtract(&self, other: &Value) -> Result<Value>
pub fn divide(&self, other: &Value) -> Result<Value>
[src]
pub fn divide(&self, other: &Value) -> Result<Value>
pub fn multiply(&self, other: &Value) -> Result<Value>
[src]
pub fn multiply(&self, other: &Value) -> Result<Value>
pub fn modulo(&self, other: &Value) -> Result<Value>
[src]
pub fn modulo(&self, other: &Value) -> Result<Value>
pub fn and(&self, other: &Value) -> Result<Value>
[src]
pub fn and(&self, other: &Value) -> Result<Value>
pub fn or(&self, other: &Value) -> Result<Value>
[src]
pub fn or(&self, other: &Value) -> Result<Value>
Trait Implementations
impl Clone for Value
[src]
impl Clone for Value
fn clone(&self) -> Value
[src]
fn clone(&self) -> Value
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Debug for Value
[src]
impl Debug for Value