//! Helpers to obtain traces suitable for diagnostics from timely / differential.
/// An error generated by this crate's connect functions.
#[derive(Debug)]pubenumConnectError{
IoError(std::io::Error),
Other(String),}implFrom<std::io::Error>forConnectError{fnfrom(e:std::io::Error)->Self{ConnectError::IoError(e)}}pubmodreceive;