Trait ScalarRef

Source
pub trait ScalarRef<'a>:
    ScalarBounds<ScalarRefImpl<'a>>
    + 'a
    + Copy {
    type ScalarType: Scalar<ScalarRefType<'a> = Self>;

    // Required methods
    fn to_owned_scalar(&self) -> Self::ScalarType;
    fn hash_scalar<H: Hasher>(&self, state: &mut H);
}
Expand description

ScalarRef is a trait over all possible references in the evaluation framework.

ScalarRef is reciprocal to Scalar. Use to_owned_scalar to get an owned scalar.

Required Associated Types§

Source

type ScalarType: Scalar<ScalarRefType<'a> = Self>

ScalarType is the owned type of current ScalarRef.

Required Methods§

Source

fn to_owned_scalar(&self) -> Self::ScalarType

Convert ScalarRef to an owned scalar.

Source

fn hash_scalar<H: Hasher>(&self, state: &mut H)

A wrapped hash function to get the hash value for this scaler.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ScalarRef<'_> for bool

Implement ScalarRef for bool.

Source§

impl<'a> ScalarRef<'a> for &'a str

Implement ScalarRef for Box<str>. Box<str> could be converted to &str.

Source§

impl<'a> ScalarRef<'a> for &'a [u8]

Source§

impl<'scalar> ScalarRef<'scalar> for i16

Source§

type ScalarType = i16

Source§

fn to_owned_scalar(&self) -> Self

Source§

fn hash_scalar<H: Hasher>(&self, state: &mut H)

Source§

impl<'scalar> ScalarRef<'scalar> for i32

Source§

type ScalarType = i32

Source§

fn to_owned_scalar(&self) -> Self

Source§

fn hash_scalar<H: Hasher>(&self, state: &mut H)

Source§

impl<'scalar> ScalarRef<'scalar> for i64

Source§

type ScalarType = i64

Source§

fn to_owned_scalar(&self) -> Self

Source§

fn hash_scalar<H: Hasher>(&self, state: &mut H)

Implementors§

Source§

impl ScalarRef<'_> for Decimal

Implement ScalarRef for Decimal.

Source§

impl ScalarRef<'_> for Date

Implement ScalarRef for Date.

Source§

impl ScalarRef<'_> for Interval

Implement ScalarRef for Interval.

Source§

impl ScalarRef<'_> for Time

Implement ScalarRef for Time.

Source§

impl ScalarRef<'_> for Timestamp

Implement ScalarRef for Timestamp.

Source§

impl ScalarRef<'_> for Timestamptz

Implement ScalarRef for Timestamptz.

Source§

impl<'a> ScalarRef<'a> for StructRef<'a>

Implement Scalar for StructValue.

Source§

impl<'a> ScalarRef<'a> for ListRef<'a>

Implement Scalar for ListValue.

Source§

impl<'a> ScalarRef<'a> for MapRef<'a>

Source§

impl<'a> ScalarRef<'a> for Int256Ref<'a>

Source§

impl<'a> ScalarRef<'a> for JsonbRef<'a>

Source§

impl<'scalar> ScalarRef<'scalar> for Serial

Source§

impl<'scalar> ScalarRef<'scalar> for F32

Source§

impl<'scalar> ScalarRef<'scalar> for F64