batch-mode-batch-index 0.2.2

Provides utilities for managing batch indices and generating regex patterns for matching batch file names based on Usize or UUID identifiers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// ---------------- [ File: batch-mode-batch-index/src/errors.rs ]
crate::ix!();

error_tree!{

    #[derive(PartialEq)]
    pub enum UuidParseError {
        UuidError(uuid::Error),

        #[cmp_neq]
        IoError(std::io::Error),
    }
}