xlog-core 0.9.2

Core types, traits, and error surfaces shared across XLOG
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core types and traits for XLOG
#![warn(missing_docs)]

pub mod config;
pub mod error;
pub mod symbol;
pub mod traits;
pub mod types;

pub use config::{CostModelKind, MemoryBudget, RuntimeConfig};
pub use error::{Result, XlogError};
pub use traits::{GpuBuffer, KernelProvider, RelationStore};
pub use types::{AggOp, RelId, ScalarType, Schema};