raft-engine 0.4.2

A persistent storage engine for Multi-Raft logs
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2017-present, PingCAP, Inc. Licensed under Apache-2.0.

#[cfg(not(any(windows, feature = "std_fs")))]
mod unix;
#[cfg(not(any(windows, feature = "std_fs")))]
pub use unix::LogFd;

#[cfg(any(windows, feature = "std_fs"))]
mod plain;
#[cfg(any(windows, feature = "std_fs"))]
pub use plain::LogFd;