libutils-issue 0.1.2

A easy-to-use customizable error type
Documentation
//^
//^ HEAD
//^

//> HEAD -> SUPER
use super::{
    Issue,
    severity::Severity
};


//^
//^ IMPLEMENTATIONS
//^

//> IMPLEMENTATIONS -> &'STATIC STR
const impl From<&'static str> for Issue {
    fn from(value: &'static str) -> Self {return Self {
        name: value,
        severity: Severity::Critical,
        ..
    }}
}