tdiag-connect 0.2.0

Helpers to obtain traces suitable for diagnostics from timely / differential.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Helpers to obtain traces suitable for diagnostics from timely / differential.

/// An error generated by this crate's connect functions.
#[derive(Debug)]
pub enum ConnectError {
    IoError(std::io::Error),
    Other(String),
}

impl From<std::io::Error> for ConnectError {
    fn from(e: std::io::Error) -> Self {
        ConnectError::IoError(e)
    }
}

pub mod receive;