vantage-dataset 0.4.2

Dataset traits for the Vantage data framework
Documentation
1
2
3
4
5
6
7
8
9
10
//! Mock implementations for testing and examples
//!
//! This module provides mock data sources that can be used for testing
//! and demonstration purposes without requiring external dependencies.

pub mod csv;
pub mod queue;

pub use csv::{CsvFile, MockCsv};
pub use queue::{MockQueue, Topic};