scatter_net/scatter_net/peer/
mod.rs

1mod builder;
2mod implementations;
3mod inner;
4mod methods;
5mod state;
6
7pub use builder::*;
8pub use implementations::*;
9pub use inner::*;
10use ps_rwt::RWT;
11pub use state::*;
12
13#[derive(Clone, Debug)]
14pub struct Peer {
15    inner: RWT<PeerInnerReadonly, PeerInnerWritable>,
16}