Trait vortex_array::encoding::EncodingVTable

source ·
pub trait EncodingVTable:
    'static
    + Sync
    + Send
    + Debug
    + IntoCanonicalVTable
    + MetadataVTable
    + ComputeVTable
    + StatisticsVTable<ArrayData>
    + ValidityVTable<ArrayData>
    + VariantsVTable<ArrayData>
    + VisitorVTable<ArrayData> {
    // Required methods
    fn id(&self) -> EncodingId;
    fn as_any(&self) -> &dyn Any;
}
Expand description

Object-safe encoding trait for an array.

Required Methods§

source

fn id(&self) -> EncodingId

source

fn as_any(&self) -> &dyn Any

Trait Implementations§

source§

impl Hash for dyn EncodingVTable + '_

source§

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

Feeds this value into the given Hasher. Read more
source§

impl PartialEq for dyn EncodingVTable + '_

source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for dyn EncodingVTable + '_

Implementors§