doing-error 0.1.0

Error types for the doing CLI
Documentation
  • Coverage
  • 100%
    10 out of 10 items documented0 out of 1 items with examples
  • Size
  • Source code size: 5.89 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.24 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 27s Average build duration of successful builds.
  • all releases: 24s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • aaronmallen/doing
    27 1 11
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • aaronmallen

doing-error

Shared error types for the doing CLI.

This crate provides the Error enum and Result<T> type alias used throughout the doing workspace.

Usage

use doing_error::{Error, Result};

fn example() -> Result<()> {
    Err(Error::Config("something went wrong".into()))
}

License

MIT — see LICENSE for details.