impl AsRef<Self> for primitives

This commit is contained in:
debris 2018-02-21 14:09:10 +01:00
parent d541e8822f
commit 3d43653d9f
1 changed files with 6 additions and 0 deletions

View File

@ -551,6 +551,12 @@ macro_rules! construct_uint {
#[derive(Copy, Clone, Eq, PartialEq, Hash)]
pub struct $name(pub [u64; $n_words]);
impl AsRef<$name> for $name {
fn as_ref(&self) -> &$name {
&self
}
}
impl $name {
/// Convert from a decimal string.
pub fn from_dec_str(value: &str) -> Result<Self, $crate::FromDecStrErr> {