Trait Row

Source
pub trait Row:
    Sized
    + Debug
    + PartialEq
    + Eq {
Show 16 methods // Required methods fn datum_at(&self, index: usize) -> DatumRef<'_>; unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>; fn len(&self) -> usize; fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>; // Provided methods fn is_empty(&self) -> bool { ... } fn to_owned_row(&self) -> OwnedRow { ... } fn into_owned_row(self) -> OwnedRow { ... } fn value_serialize_into(&self, buf: impl BufMut) { ... } fn value_serialize(&self) -> Vec<u8> { ... } fn value_serialize_bytes(&self) -> Bytes { ... } fn value_estimate_size(&self) -> usize { ... } fn memcmp_serialize_into(&self, serde: &OrderedRowSerde, buf: impl BufMut) { ... } fn memcmp_serialize(&self, serde: &OrderedRowSerde) -> Vec<u8> { ... } fn hash_datums_into<H: Hasher>(&self, state: &mut H) { ... } fn hash<H: BuildHasher>(&self, hash_builder: H) -> HashCode<H> { ... } fn eq(this: &Self, other: impl Row) -> bool { ... }
}
Expand description

The trait for abstracting over a Row-like type.

Required Methods§

Source

fn datum_at(&self, index: usize) -> DatumRef<'_>

Returns the DatumRef at the given index.

Source

unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>

Returns the DatumRef at the given index without bounds checking.

§Safety

Calling this method with an out-of-bounds index is undefined behavior.

Source

fn len(&self) -> usize

Returns the number of datum in the row.

Source

fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>

Returns an iterator over the datums in the row, in DatumRef form.

Provided Methods§

Source

fn is_empty(&self) -> bool

Returns true if the row contains no datum.

Source

fn to_owned_row(&self) -> OwnedRow

Converts the row into an OwnedRow.

Prefer into_owned_row if the row is already owned.

Source

fn into_owned_row(self) -> OwnedRow

Consumes self and converts it into an OwnedRow.

Source

fn value_serialize_into(&self, buf: impl BufMut)

Serializes the row with value encoding, into the given buf.

Source

fn value_serialize(&self) -> Vec<u8>

Serializes the row with value encoding and returns the bytes.

Source

fn value_serialize_bytes(&self) -> Bytes

Serializes the row with value encoding and returns the bytes.

Source

fn value_estimate_size(&self) -> usize

Source

fn memcmp_serialize_into(&self, serde: &OrderedRowSerde, buf: impl BufMut)

Serializes the row with memcomparable encoding, into the given buf. As each datum may have different order type, a serde should be provided.

Source

fn memcmp_serialize(&self, serde: &OrderedRowSerde) -> Vec<u8>

Serializes the row with memcomparable encoding and return the bytes. As each datum may have different order type, a serde should be provided.

Source

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

Hash the datums of this row into the given hasher.

Implementors should delegate std::hash::Hash::hash to this method.

Source

fn hash<H: BuildHasher>(&self, hash_builder: H) -> HashCode<H>

Returns the hash code of the row.

Source

fn eq(this: &Self, other: impl Row) -> bool

Determines whether the datums of this row are equal to those of another.

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<D: ToDatumRef> Row for &[D]

Source§

fn datum_at(&self, index: usize) -> DatumRef<'_>

Source§

unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>

Source§

fn len(&self) -> usize

Source§

fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>

Source§

impl<D: ToDatumRef, const N: usize> Row for [D; N]

Source§

fn datum_at(&self, index: usize) -> DatumRef<'_>

Source§

unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>

Source§

fn len(&self) -> usize

Source§

fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>

Source§

impl<R1: Row, R2: Row> Row for Either<R1, R2>

Implements Row for an either::Either of two different types of rows.

Source§

fn datum_at(&self, index: usize) -> DatumRef<'_>

Source§

unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>

Source§

fn len(&self) -> usize

Source§

fn is_empty(&self) -> bool

Source§

fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>

Source§

fn to_owned_row(&self) -> OwnedRow

Source§

fn into_owned_row(self) -> OwnedRow

Source§

fn value_serialize_into(&self, buf: impl BufMut)

Source§

fn value_serialize(&self) -> Vec<u8>

Source§

fn value_serialize_bytes(&self) -> Bytes

Source§

fn memcmp_serialize_into(&self, serde: &OrderedRowSerde, buf: impl BufMut)

Source§

fn memcmp_serialize(&self, serde: &OrderedRowSerde) -> Vec<u8>

Source§

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

Source§

fn hash<H: BuildHasher>(&self, hash_builder: H) -> HashCode<H>

Source§

fn eq(this: &Self, other: impl Row) -> bool

Source§

impl<R: Row + Clone> Row for Cow<'_, R>

Source§

fn datum_at(&self, index: usize) -> DatumRef<'_>

Source§

unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>

Source§

fn len(&self) -> usize

Source§

fn is_empty(&self) -> bool

Source§

fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>

Source§

fn to_owned_row(&self) -> OwnedRow

Source§

fn value_serialize_into(&self, buf: impl BufMut)

Source§

fn value_serialize(&self) -> Vec<u8>

Source§

fn memcmp_serialize_into(&self, serde: &OrderedRowSerde, buf: impl BufMut)

Source§

fn memcmp_serialize(&self, serde: &OrderedRowSerde) -> Vec<u8>

Source§

fn hash<H: BuildHasher>(&self, hash_builder: H) -> HashCode<H>

Source§

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

Source§

fn eq(this: &Self, other: impl Row) -> bool

Source§

fn into_owned_row(self) -> OwnedRow

Source§

impl<R: Row> Row for Option<R>

Implements Row for an optional row.

Source§

fn datum_at(&self, index: usize) -> DatumRef<'_>

Source§

unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>

Source§

fn len(&self) -> usize

Source§

fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>

Source§

fn to_owned_row(&self) -> OwnedRow

Source§

fn into_owned_row(self) -> OwnedRow

Source§

fn value_serialize_into(&self, buf: impl BufMut)

Source§

fn memcmp_serialize_into(&self, serde: &OrderedRowSerde, buf: impl BufMut)

Source§

impl<R: Row> Row for &R

Source§

fn datum_at(&self, index: usize) -> DatumRef<'_>

Source§

unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>

Source§

fn len(&self) -> usize

Source§

fn is_empty(&self) -> bool

Source§

fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>

Source§

fn to_owned_row(&self) -> OwnedRow

Source§

fn value_serialize_into(&self, buf: impl BufMut)

Source§

fn value_serialize(&self) -> Vec<u8>

Source§

fn memcmp_serialize_into(&self, serde: &OrderedRowSerde, buf: impl BufMut)

Source§

fn memcmp_serialize(&self, serde: &OrderedRowSerde) -> Vec<u8>

Source§

fn hash<H: BuildHasher>(&self, hash_builder: H) -> HashCode<H>

Source§

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

Source§

fn eq(this: &Self, other: impl Row) -> bool

Source§

impl<R: Row> Row for Box<R>

Source§

fn datum_at(&self, index: usize) -> DatumRef<'_>

Source§

unsafe fn datum_at_unchecked(&self, index: usize) -> DatumRef<'_>

Source§

fn len(&self) -> usize

Source§

fn is_empty(&self) -> bool

Source§

fn iter(&self) -> impl Iterator<Item = DatumRef<'_>>

Source§

fn to_owned_row(&self) -> OwnedRow

Source§

fn value_serialize_into(&self, buf: impl BufMut)

Source§

fn value_serialize(&self) -> Vec<u8>

Source§

fn memcmp_serialize_into(&self, serde: &OrderedRowSerde, buf: impl BufMut)

Source§

fn memcmp_serialize(&self, serde: &OrderedRowSerde) -> Vec<u8>

Source§

fn hash<H: BuildHasher>(&self, hash_builder: H) -> HashCode<H>

Source§

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

Source§

fn eq(this: &Self, other: impl Row) -> bool

Source§

fn into_owned_row(self) -> OwnedRow

Implementors§

Source§

impl Row for StructRef<'_>

A struct value can be treated as a row.

Source§

impl Row for RowRef<'_>

Source§

impl Row for ListRef<'_>

Source§

impl Row for Empty

Source§

impl Row for OwnedRow

Source§

impl<D: ToDatumRef + Default, const N: usize> Row for ArrayVec<[D; N]>

Source§

impl<D: ToDatumRef> Row for Once<D>

Source§

impl<D: ToDatumRef> Row for RepeatN<D>

Source§

impl<R1: Row, R2: Row> Row for Chain<R1, R2>

Source§

impl<R: Row> Row for DefaultOrdered<R>

Source§

impl<R: Row> Row for Project<'_, R>

Source§

impl<R: Row> Row for Slice<R>