pareg_core 0.13.0

This library contains the implementation for the pareg library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This module contains implementation of errors in pareg.

mod arg_err_ctx;
mod arg_err_kind;
mod arg_error;
mod color_mode;

pub use self::{arg_err_ctx::*, arg_err_kind::*, arg_error::*, color_mode::*};

/// Pareg result type. It is [`std::result::Result<T, ArgError<'a>>`]
pub type Result<T, E = ArgError> = std::result::Result<T, E>;