Struct ethcontract_common::TransactionHash [−]
Expand description
Fixed-size uninterpreted hash type with 32 bytes (256 bits) size.
Implementations
impl H256
impl H256pub const fn repeat_byte(byte: u8) -> H256
pub const fn repeat_byte(byte: u8) -> H256Returns 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; 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 u8Returns 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]) -> H256impl H256
impl H256Utilities using the byteorder crate.
pub fn to_low_u64_be(&self) -> u64
pub fn to_low_u64_be(&self) -> u64Returns 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) -> u64Returns 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) -> u64Returns 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) -> H256Creates a new hash type from the given u64 value.
Note
- The given
u64value 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) -> H256Creates a new hash type from the given u64 value.
Note
- The given
u64value 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) -> H256Creates a new hash type from the given u64 value.
Note
- The given
u64value 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 H256Utilities using the rand crate.
pub fn randomize_using<R>(&mut self, rng: &mut R) where
R: Rng + ?Sized,
pub fn randomize_using<R>(&mut self, rng: &mut R) where
R: Rng + ?Sized, 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 where
R: Rng + ?Sized,
pub fn random_using<R>(rng: &mut R) -> H256 where
R: Rng + ?Sized, Create a new hash with cryptographically random content using the given random number generator.
Trait Implementations
impl BigEndianHash for H256
impl BigEndianHash for H256impl<'r> BitAndAssign<&'r H256> for H256
impl<'r> BitAndAssign<&'r H256> for H256pub fn bitand_assign(&mut self, rhs: &'r H256)
pub fn bitand_assign(&mut self, rhs: &'r H256)Performs the &= operation. Read more
impl BitAndAssign<H256> for H256
impl BitAndAssign<H256> for H256pub fn bitand_assign(&mut self, rhs: H256)
pub fn bitand_assign(&mut self, rhs: H256)Performs the &= operation. Read more
impl<'r> BitOrAssign<&'r H256> for H256
impl<'r> BitOrAssign<&'r H256> for H256pub fn bitor_assign(&mut self, rhs: &'r H256)
pub fn bitor_assign(&mut self, rhs: &'r H256)Performs the |= operation. Read more
impl BitOrAssign<H256> for H256
impl BitOrAssign<H256> for H256pub fn bitor_assign(&mut self, rhs: H256)
pub fn bitor_assign(&mut self, rhs: H256)Performs the |= operation. Read more
impl<'r> BitXorAssign<&'r H256> for H256
impl<'r> BitXorAssign<&'r H256> for H256pub fn bitxor_assign(&mut self, rhs: &'r H256)
pub fn bitxor_assign(&mut self, rhs: &'r H256)Performs the ^= operation. Read more
impl BitXorAssign<H256> for H256
impl BitXorAssign<H256> for H256pub fn bitxor_assign(&mut self, rhs: H256)
pub fn bitxor_assign(&mut self, rhs: H256)Performs the ^= operation. Read more
impl Decodable for H256
impl Decodable for H256impl Decode for H256
impl Decode for H256Attempt to deserialise the value from input.
Attempt to skip the encoded value from input. Read more
fn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>Returns the fixed encoded size of the type. Read more
impl<'de> Deserialize<'de> for H256
impl<'de> Deserialize<'de> for H256pub fn deserialize<D>(
deserializer: D
) -> Result<H256, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
pub fn deserialize<D>(
deserializer: D
) -> Result<H256, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
impl Encodable for H256
impl Encodable for H256pub fn rlp_append(&self, s: &mut RlpStream)
pub fn rlp_append(&self, s: &mut RlpStream)Append a value to the stream
impl Encode for H256
impl Encode for H256pub fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
pub fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R, Convert self to a slice and then invoke the given closure with it.
Convert self to a slice and append it to the destination.
fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usizeCalculates the encoded size. Read more
Performs the conversion.
type Err = FromHexError
type Err = FromHexErrorThe associated error which can be returned from parsing.
impl MaxEncodedLen for H256
impl MaxEncodedLen for H256pub fn max_encoded_len() -> usize
pub fn max_encoded_len() -> usizeUpper bound, in bytes, of the maximum encoded size of this item.
impl PartialOrd<H256> for H256
impl PartialOrd<H256> for H256pub fn partial_cmp(&self, other: &H256) -> Option<Ordering>
pub fn partial_cmp(&self, other: &H256) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer, Serialize this value into the given Serde serializer. Read more
Converts a specified type back into token.
Auto Trait Implementations
impl RefUnwindSafe for H256impl UnwindSafe for H256Blanket Implementations
pub fn as_byte_slice(&self) -> &[u8]pub fn as_mut_byte_slice(&mut self) -> &mut [u8]pub fn as_mut_slice_of<T>(&mut self) -> Result<&mut [T], Error> where
T: FromByteSlice, pub fn as_slice_of<T>(&self) -> Result<&[T], Error> where
T: FromByteSlice, Mutably borrows from an owned value. Read more
type Output = T
type Output = TShould always be Self
Convert to list of tokens
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode, impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode, impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode, impl<T> EncodeLike<Arc<T>> for T where
T: Encode, impl<T> EncodeLike<Rc<T>> for T where
T: Encode,