code0-flow 0.0.31

Crate for managing the code0-flows inside of the Flow Queue & FlowStore
Documentation
use std::io;
use std::path::PathBuf;

#[derive(Debug)]
pub enum ReaderError {
    JsonError {
        path: PathBuf,
        error: serde_json::Error,
    },
    ReadFeatureError {
        path: String,
        source: Box<ReaderError>,
    },
    ReadDirectoryError {
        path: PathBuf,
        error: io::Error,
    },
    ReadFileError {
        path: PathBuf,
        error: io::Error,
    },
    DirectoryEntryError(io::Error),
}