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)
// usize
impl const TryFromPatch<usize> for i8 {
    fn try_from_value(v: usize) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<usize> for i16 {
    fn try_from_value(v: usize) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<usize> for i32 {
    fn try_from_value(v: usize) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<usize> for i64 {
    fn try_from_value(v: usize) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<usize> for isize {
    fn try_from_value(v: usize) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<usize> for u8 {
    fn try_from_value(v: usize) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<usize> for u16 {
    fn try_from_value(v: usize) -> Option<Self> {
        Some(v as Self)
    }
}
impl const TryFromPatch<usize> for u32 {
    fn try_from_value(v: usize) -> Option<Self> {
        Some(v as Self)
    }
}
use crate::extensions::TryFromPatch;