graph6-rs 0.2.1

A library for parsing graph6/digraph6 strings and converting them into other text based formats
Documentation
#[derive(Debug, PartialEq, Eq)]
pub enum IOError {
    InvalidDigraphHeader,
    InvalidSizeChar,
    GraphTooLarge,
    InvalidAdjacencyMatrix,
    NonCanonicalEncoding,
}

#[cfg(test)]
mod testing {
    use super::IOError;

    #[test]
    fn test_error() {
        let err = IOError::InvalidDigraphHeader;
        println!("{:?}", err);
    }
}