1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
//! `From`-like conversions for [`Limb`].
use super::{Limb, WideWord, Word};
impl Limb {
/// Create a [`Limb`] from a `u8` integer (const-friendly)
// TODO(tarcieri): replace with `const impl From<u8>` when stable
pub const fn from_u8(n: u8) -> Self {
Limb(n as Word)
}
/// Create a [`Limb`] from a `u16` integer (const-friendly)
// TODO(tarcieri): replace with `const impl From<u16>` when stable
pub const fn from_u16(n: u16) -> Self {
Limb(n as Word)
}
/// Create a [`Limb`] from a `u32` integer (const-friendly)
// TODO(tarcieri): replace with `const impl From<u32>` when stable
pub const fn from_u32(n: u32) -> Self {
#[allow(trivial_numeric_casts)]
Limb(n as Word)
}
/// Create a [`Limb`] from a `u64` integer (const-friendly)
// TODO(tarcieri): replace with `const impl From<u64>` when stable
#[cfg(target_pointer_width = "64")]
pub const fn from_u64(n: u64) -> Self {
Limb(n)
}
}
impl From<u8> for Limb {
#[inline]
fn from(n: u8) -> Limb {
Limb(n.into())
}
}
impl From<u16> for Limb {
#[inline]
fn from(n: u16) -> Limb {
Limb(n.into())
}
}
impl From<u32> for Limb {
#[inline]
fn from(n: u32) -> Limb {
Limb(n.into())
}
}
#[cfg(target_pointer_width = "64")]
impl From<u64> for Limb {
#[inline]
fn from(n: u64) -> Limb {
Limb(n)
}
}
impl From<Limb> for Word {
#[inline]
fn from(limb: Limb) -> Word {
limb.0
}
}
impl From<Limb> for WideWord {
#[inline]
fn from(limb: Limb) -> WideWord {
limb.0.into()
}
}