mobc-nebula 0.5.1

mobc Nebula Graph/Meta/Storage pool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
cfg_if::cfg_if! {
    if #[cfg(all(feature = "async_std", not(feature = "tokio")))] {
        #[cfg(feature = "graph")]
        pub mod graph;
        #[cfg(feature = "graph")]
        pub use graph::{GraphClientConfiguration, GraphConnectionManager};

        pub mod v2;
    } else if #[cfg(all(not(feature = "async_std"), feature = "tokio"))] {
        #[cfg(feature = "graph")]
        pub mod graph;
        #[cfg(feature = "graph")]
        pub use graph::{GraphClientConfiguration, GraphConnectionManager};

        pub mod v2;
    }
}