mirl 9.2.0

Miners Rust Lib - A massive collection of ever growing and changing functions, structs, and enums. Check the description for compatibility and toggleable features! (Most of the lib is controlled by flags/features so the lib can continue to be lightweight despite its size)
// i8
impl const TryFromPatch<i8> for u8 {
    fn try_from_value(v: i8) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<i8> for u16 {
    fn try_from_value(v: i8) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<i8> for u32 {
    fn try_from_value(v: i8) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<i8> for u64 {
    fn try_from_value(v: i8) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<i8> for u128 {
    fn try_from_value(v: i8) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<i8> for usize {
    fn try_from_value(v: i8) -> Option<Self> {
        Some(v as Self)
    }
}
use crate::extensions::TryFromPatch;