pub type SharedChannelGraph = Arc<ChannelGraph>;Expand description
A thread-safe, shareable handle to a ChannelGraph.
This is a convenience alias. Since ChannelGraph uses interior mutability,
wrapping it in Arc is sufficient for concurrent sharing without an
external RwLock.
Aliased Typeยง
pub struct SharedChannelGraph { /* private fields */ }