ctcore 0.2.0

Precision tools for the CTfile family of file formats.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::text::Printable;

#[derive(Debug, PartialEq)]
pub enum Error {
    Character(usize, usize, Vec<Printable>),
    Eof(usize),
    Eol(usize),
    Overflow(usize, usize),
    Unprintable(usize, usize, u8),
}