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)
// u8
impl const FromPatch<u8> for i16 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for i32 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for i64 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for i128 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for isize {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<Self> for u8 {
    fn from_value(v: Self) -> Self {
        v
    }
}
impl const FromPatch<u8> for u16 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for u32 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for u64 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for u128 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for usize {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for f32 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for f64 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for f16 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
impl const FromPatch<u8> for f128 {
    fn from_value(v: u8) -> Self {
        v as Self
    }
}
use crate::extensions::FromPatch;