Type Alias Public
pub type Public = H512;
Aliased Type§
struct Public(pub [u8; 64]);
Fields§
§0: [u8; 64]
Implementations
§impl H512
impl H512
Utilities using the byteorder
crate.
pub fn to_low_u64_be(&self) -> u64
pub fn to_low_u64_be(&self) -> u64
Returns the lowest 8 bytes interpreted as big-endian.
§Note
For hash type with less than 8 bytes the missing bytes are interpreted as being zero.
pub fn to_low_u64_le(&self) -> u64
pub fn to_low_u64_le(&self) -> u64
Returns the lowest 8 bytes interpreted as little-endian.
§Note
For hash type with less than 8 bytes the missing bytes are interpreted as being zero.
pub fn to_low_u64_ne(&self) -> u64
pub fn to_low_u64_ne(&self) -> u64
Returns the lowest 8 bytes interpreted as native-endian.
§Note
For hash type with less than 8 bytes the missing bytes are interpreted as being zero.
pub fn from_low_u64_be(val: u64) -> H512
pub fn from_low_u64_be(val: u64) -> H512
Creates a new hash type from the given u64
value.
§Note
- The given
u64
value is interpreted as big endian. - Ignores the most significant bits of the given value if the hash type has less than 8 bytes.
pub fn from_low_u64_le(val: u64) -> H512
pub fn from_low_u64_le(val: u64) -> H512
Creates a new hash type from the given u64
value.
§Note
- The given
u64
value is interpreted as little endian. - Ignores the most significant bits of the given value if the hash type has less than 8 bytes.
pub fn from_low_u64_ne(val: u64) -> H512
pub fn from_low_u64_ne(val: u64) -> H512
Creates a new hash type from the given u64
value.
§Note
- The given
u64
value is interpreted as native endian. - Ignores the most significant bits of the given value if the hash type has less than 8 bytes.
§impl H512
impl H512
Utilities using the rand
crate.
pub fn randomize_using<R>(&mut self, rng: &mut R)
pub fn randomize_using<R>(&mut self, rng: &mut R)
Assign self
to a cryptographically random value using the
given random number generator.
pub fn randomize(&mut self)
pub fn randomize(&mut self)
Assign self
to a cryptographically random value.
pub fn random_using<R>(rng: &mut R) -> H512
pub fn random_using<R>(rng: &mut R) -> H512
Create a new hash with cryptographically random content using the given random number generator.
§impl H512
impl H512
pub const fn repeat_byte(byte: u8) -> H512
pub const fn repeat_byte(byte: u8) -> H512
Returns a new fixed hash where all bits are set to the given byte.
pub fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
pub fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Extracts a mutable byte slice containing the entire fixed hash.
pub const fn as_fixed_bytes(&self) -> &[u8; 64]
pub const fn as_fixed_bytes(&self) -> &[u8; 64]
Extracts a reference to the byte array containing the entire fixed hash.
pub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 64]
pub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 64]
Extracts a reference to the byte array containing the entire fixed hash.
pub const fn to_fixed_bytes(self) -> [u8; 64]
pub const fn to_fixed_bytes(self) -> [u8; 64]
Returns the inner bytes array.
pub fn as_mut_ptr(&mut self) -> *mut u8
pub fn as_mut_ptr(&mut self) -> *mut u8
Returns a mutable raw pointer to the value.
pub fn assign_from_slice(&mut self, src: &[u8])
pub fn assign_from_slice(&mut self, src: &[u8])
pub fn from_slice(src: &[u8]) -> H512
pub fn from_slice(src: &[u8]) -> H512
Trait Implementations
§impl BigEndianHash for H512
impl BigEndianHash for H512
§impl<'r> BitAndAssign<&'r H512> for H512
impl<'r> BitAndAssign<&'r H512> for H512
§fn bitand_assign(&mut self, rhs: &'r H512)
fn bitand_assign(&mut self, rhs: &'r H512)
&=
operation. Read more§impl BitAndAssign for H512
impl BitAndAssign for H512
§fn bitand_assign(&mut self, rhs: H512)
fn bitand_assign(&mut self, rhs: H512)
&=
operation. Read more§impl<'r> BitOrAssign<&'r H512> for H512
impl<'r> BitOrAssign<&'r H512> for H512
§fn bitor_assign(&mut self, rhs: &'r H512)
fn bitor_assign(&mut self, rhs: &'r H512)
|=
operation. Read more§impl BitOrAssign for H512
impl BitOrAssign for H512
§fn bitor_assign(&mut self, rhs: H512)
fn bitor_assign(&mut self, rhs: H512)
|=
operation. Read more§impl<'r> BitXorAssign<&'r H512> for H512
impl<'r> BitXorAssign<&'r H512> for H512
§fn bitxor_assign(&mut self, rhs: &'r H512)
fn bitxor_assign(&mut self, rhs: &'r H512)
^=
operation. Read more§impl BitXorAssign for H512
impl BitXorAssign for H512
§fn bitxor_assign(&mut self, rhs: H512)
fn bitxor_assign(&mut self, rhs: H512)
^=
operation. Read more§impl Decode for H512
impl Decode for H512
§fn decode<I>(input: &mut I) -> Result<H512, Error>where
I: Input,
fn decode<I>(input: &mut I) -> Result<H512, Error>where
I: Input,
§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
§fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
§fn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
§impl<'de> Deserialize<'de> for H512
impl<'de> Deserialize<'de> for H512
§fn deserialize<D>(
deserializer: D,
) -> Result<H512, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<H512, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
§impl Encodable for H512
impl Encodable for H512
§fn rlp_append(&self, s: &mut RlpStream)
fn rlp_append(&self, s: &mut RlpStream)
§impl Encode for H512
impl Encode for H512
§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
§fn encode_to<T>(&self, dest: &mut T)where
T: Output + ?Sized,
fn encode_to<T>(&self, dest: &mut T)where
T: Output + ?Sized,
§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
§impl EncodeAsType for H512
impl EncodeAsType for H512
§fn encode_as_type_to<R>(
&self,
type_id: <R as TypeResolver>::TypeId,
types: &R,
out: &mut Vec<u8>,
) -> Result<(), Error>where
R: TypeResolver,
fn encode_as_type_to<R>(
&self,
type_id: <R as TypeResolver>::TypeId,
types: &R,
out: &mut Vec<u8>,
) -> Result<(), Error>where
R: TypeResolver,
type_id
, types
, a context
and some output target for the SCALE encoded bytes,
attempt to SCALE encode the current value into the type given by type_id
.§impl<I> Index<I> for H512where
I: SliceIndex<[u8]>,
impl<I> Index<I> for H512where
I: SliceIndex<[u8]>,
§impl IntoVisitor for H512
impl IntoVisitor for H512
§type AnyVisitor<R: TypeResolver> = BasicVisitor<H512, R>
type AnyVisitor<R: TypeResolver> = BasicVisitor<H512, R>
Self
.