cgp-error-std 0.3.0

Context-generic programming error handlers implemented using `std::error::Error`
Documentation
1
2
3
4
5
6
7
8
9
use cgp_core::error::ProvideErrorType;

use crate::types::Error;

pub struct UseBoxedStdError;

impl<Context> ProvideErrorType<Context> for UseBoxedStdError {
    type Error = Error;
}