pacifica-rs 1.0.0

rust implementation of PacificA: Replication in Log-Based Distributed Storage Systems
1
2
3
4
5
6
7
8
9
use crate::{LogId, TypeConfig};

pub struct Entry<C>
where
    C: TypeConfig,
{
    pub log_id: LogId,
    pub request: C::Request,
}