evidentsource-client 1.0.0-rc1

Rust client for the EvidentSource event sourcing platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Database view implementations.
//!
//! This module provides implementations of the database view traits from
//! evidentsource-core, backed by gRPC calls to the EvidentSource server.

mod at_revision;
mod effective_timestamp;
mod speculative;

// Public API: traits and builders
pub use at_revision::{DatabaseAtRevisionTyped, EventQueryBuilder, TypedEventQuery};

// Internal impl type used by connection module
pub(crate) use at_revision::DatabaseAtRevisionImpl;