rubx 0.1.1

Rubx (Rust Basic Toolbox) is a library for command programs that features a toolbox with a series of basic functionalities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod rux_debug;
pub mod rux_fires;
pub mod rux_paths;
pub mod rux_texts;
pub mod rux_times;
pub mod rux_winds;

mod tests;

use std::error::Error;
pub type RubxError = Box<dyn Error + Send + Sync>;
pub type RubxResult<T> = Result<T, RubxError>;