library_catalogue 0.1.0

A collection of utilities to track the books in your library.
Documentation
1
2
3
4
5
6
7
#[derive(Debug, Copy, Clone)]
pub enum Read {
    Finished,
    Reading(u32),
    Started,
    NotStarted
}