Type Alias Hash
pub type Hash = H256;
Expand description
A hash of some data used by the relay chain.
Aliased Type§
struct Hash(pub [u8; 32]);
Fields§
§0: [u8; 32]
Implementations
§impl H256
impl H256
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) -> H256
pub fn from_low_u64_be(val: u64) -> H256
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) -> H256
pub fn from_low_u64_le(val: u64) -> H256
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) -> H256
pub fn from_low_u64_ne(val: u64) -> H256
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 H256
impl H256
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) -> H256
pub fn random_using<R>(rng: &mut R) -> H256
Create a new hash with cryptographically random content using the given random number generator.
pub fn random() -> H256
pub fn random() -> H256
Create a new hash with cryptographically random content.
§impl H256
impl H256
pub const fn repeat_byte(byte: u8) -> H256
pub const fn repeat_byte(byte: u8) -> H256
Returns a new fixed hash where all bits are set to the given byte.
pub const fn zero() -> H256
pub const fn zero() -> H256
Returns a new zero-initialized fixed hash.
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; 32]
pub const fn as_fixed_bytes(&self) -> &[u8; 32]
Extracts a reference to the byte array containing the entire fixed hash.
pub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 32]
pub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 32]
Extracts a reference to the byte array containing the entire fixed hash.
pub const fn to_fixed_bytes(self) -> [u8; 32]
pub const fn to_fixed_bytes(self) -> [u8; 32]
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]) -> H256
pub fn from_slice(src: &[u8]) -> H256
Trait Implementations
§impl<'r> BitAndAssign<&'r H256> for H256
impl<'r> BitAndAssign<&'r H256> for H256
§fn bitand_assign(&mut self, rhs: &'r H256)
fn bitand_assign(&mut self, rhs: &'r H256)
&=
operation. Read more§impl BitAndAssign for H256
impl BitAndAssign for H256
§fn bitand_assign(&mut self, rhs: H256)
fn bitand_assign(&mut self, rhs: H256)
&=
operation. Read more§impl<'r> BitOrAssign<&'r H256> for H256
impl<'r> BitOrAssign<&'r H256> for H256
§fn bitor_assign(&mut self, rhs: &'r H256)
fn bitor_assign(&mut self, rhs: &'r H256)
|=
operation. Read more§impl BitOrAssign for H256
impl BitOrAssign for H256
§fn bitor_assign(&mut self, rhs: H256)
fn bitor_assign(&mut self, rhs: H256)
|=
operation. Read more§impl<'r> BitXorAssign<&'r H256> for H256
impl<'r> BitXorAssign<&'r H256> for H256
§fn bitxor_assign(&mut self, rhs: &'r H256)
fn bitxor_assign(&mut self, rhs: &'r H256)
^=
operation. Read more§impl BitXorAssign for H256
impl BitXorAssign for H256
§fn bitxor_assign(&mut self, rhs: H256)
fn bitxor_assign(&mut self, rhs: H256)
^=
operation. Read more§impl CheckEqual for H256
impl CheckEqual for H256
§fn check_equal(&self, other: &H256)
fn check_equal(&self, other: &H256)
§impl Decodable for H256
impl Decodable for H256
§impl Decode for H256
impl Decode for H256
§fn decode<I>(input: &mut I) -> Result<H256, Error>where
I: Input,
fn decode<I>(input: &mut I) -> Result<H256, 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 H256
impl<'de> Deserialize<'de> for H256
§fn deserialize<D>(
deserializer: D,
) -> Result<H256, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<H256, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
§impl Encodable for H256
impl Encodable for H256
§fn rlp_append(&self, s: &mut RlpStream)
fn rlp_append(&self, s: &mut RlpStream)
§impl Encode for H256
impl Encode for H256
§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<I> Index<I> for H256where
I: SliceIndex<[u8]>,
impl<I> Index<I> for H256where
I: SliceIndex<[u8]>,
§impl MaxEncodedLen for H256
impl MaxEncodedLen for H256
§fn max_encoded_len() -> usize
fn max_encoded_len() -> usize
§impl Ord for H256
impl Ord for H256
§impl PartialOrd for H256
impl PartialOrd for H256
§impl PassBy for H256
impl PassBy for H256
§impl PassByInner for H256
impl PassByInner for H256
§fn into_inner(self) -> <H256 as PassByInner>::Inner
fn into_inner(self) -> <H256 as PassByInner>::Inner
self
and returns the inner type.§fn from_inner(inner: <H256 as PassByInner>::Inner) -> H256
fn from_inner(inner: <H256 as PassByInner>::Inner) -> H256
Self
from the given inner
.