batch-mode-batch-workspace-interface 0.2.4

Defines traits for interacting with batch workspaces, including file paths and directories.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// ---------------- [ File: batch-mode-batch-workspace/src/errors.rs ]
crate::ix!();

error_tree!{
    pub enum BatchWorkspaceError {
        #[display("No existing batch file triple at the given index {index}")]
        NoBatchFileTripleAtIndex { index: BatchIndex },
        IoError(std::io::Error),
        JsonParseError(JsonParseError),
        UuidParseError(UuidParseError),
        SaveLoadError(SaveLoadError),
    }
}