lib-contra 5.0.2

The function implementation of contra
Documentation
1
2
3
4
5
6
7
8
use std::{
    error::Error,
    io::{self},
};

pub type AnyError = Box<dyn Error>;
pub type SuccessResult = Result<(), AnyError>;
pub type IoResult = Result<(), io::Error>;