Expand description
§Error Types
Defines BumpError, the single typed error enum used throughout
bump2version. Every public function that can fail returns
Result<_, BumpError>.
§No-std compatibility
This module is fully no_std + alloc. The BumpError::Io variant is
only present when the std feature is enabled, since std::io::Error
is unavailable in no_std contexts.
Enums§
- Bump
Error - The top-level error type for the
bump2versionlibrary.