libutils 9.40.23

Common library types for faster development
//^ 
//^ HEAD
//^ 

//> HEAD -> API
use libutils::problem::{
    Problem,
    Severity
};

//> HEAD -> STD
use std::time::Instant;


//^
//^ TESTS
//^

//> TESTS -> CREATION
#[test]
fn creation() -> () {
    let _ = Problem {
        chain: Vec::from(["a", "bcd"]),
        at: Instant::now(),
        issue: "bye".into(),
        severity: Severity::Warning
    };
}