capability-skeleton-string 0.1.0

A robust library for managing skill tree skeletons using string-based nodes and bidirectional conversions between string and numeric formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// ---------------- [ File: capability-skeleton-string/src/errors.rs ]
crate::ix!();

error_tree! {
    /// Errors that may arise when converting between string-based skeleton and numeric skeleton.
    pub enum StringSkeletonError {
        SkeletonIo(capability_skeleton::SkeletonError),
        NameCollision,
        MissingChildName,
    }
}