1#![deny(missing_docs)]
8
9mod coding;
10mod future_help;
11mod handle_info;
12mod labels;
13mod peer;
14mod proxy;
15mod router;
16mod test_util;
17
18pub use coding::{decode_fidl, encode_fidl};
20pub use future_help::log_errors;
21pub use labels::{Endpoint, NodeId, NodeLinkId};
22pub use proxy::set_proxy_drop_event_handler;
23pub use router::{AscenddClientRouting, ListPeersContext, ListablePeer, Router};
24
25pub use test_util::NodeIdGenerator;
26
27#[allow(dead_code)]
29pub(crate) trait Trace {
30 fn trace(self, msg: impl std::fmt::Display, ctx: impl std::fmt::Debug) -> Self
33 where
34 Self: Sized;
35
36 fn maybe_trace(
37 self,
38 trace: bool,
39 msg: impl std::fmt::Display,
40 ctx: impl std::fmt::Debug,
41 ) -> Self
42 where
43 Self: Sized,
44 {
45 if trace {
46 self.trace(msg, ctx)
47 } else {
48 self
49 }
50 }
51}
52
53impl<X: std::fmt::Debug> Trace for X {
54 fn trace(self, msg: impl std::fmt::Display, ctx: impl std::fmt::Debug) -> Self
55 where
56 Self: Sized,
57 {
58 log::info!("[{:?}] {}: {:?}", ctx, msg, self);
59 self
60 }
61}