maxwell-utils 0.11.1

Maxwell utils implementation for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod arbiter_pool;
pub mod connection;

pub mod prelude {
  //! The `maxwell-utils` prelude.
  //!
  //! The purpose of this module is to alleviate imports of many common maxwell-utils
  //! types by adding a glob import to the top of maxwell-utils heavy modules:
  //!
  //! ```
  //! use maxwell_utils::prelude::*;
  //! ```

  pub use crate::arbiter_pool::*;
  pub use crate::connection::*;
}