Struct sp_core::H256

source ·
pub struct H256(pub [u8; 32]);
Expand description

Fixed-size uninterpreted hash type with 32 bytes (256 bits) size.

Tuple Fields§

§0: [u8; 32]

Implementations§

source§

impl H256

source

pub const fn repeat_byte(byte: u8) -> H256

Returns a new fixed hash where all bits are set to the given byte.

source

pub const fn zero() -> H256

Returns a new zero-initialized fixed hash.

source

pub const fn len_bytes() -> usize

Returns the size of this hash in bytes.

source

pub fn as_bytes(&self) -> &[u8]

Extracts a byte slice containing the entire fixed hash.

source

pub fn as_bytes_mut(&mut self) -> &mut [u8]

Extracts a mutable byte slice containing the entire fixed hash.

source

pub const fn as_fixed_bytes(&self) -> &[u8; 32]

Extracts a reference to the byte array containing the entire fixed hash.

source

pub fn as_fixed_bytes_mut(&mut self) -> &mut [u8; 32]

Extracts a reference to the byte array containing the entire fixed hash.

source

pub const fn to_fixed_bytes(self) -> [u8; 32]

Returns the inner bytes array.

source

pub fn as_ptr(&self) -> *const u8

Returns a constant raw pointer to the value.

source

pub fn as_mut_ptr(&mut self) -> *mut u8

Returns a mutable raw pointer to the value.

source

pub fn assign_from_slice(&mut self, src: &[u8])

Assign the bytes from the byte slice src to self.

Note

The given bytes are interpreted in big endian order.

Panics

If the length of src and the number of bytes in self do not match.

source

pub fn from_slice(src: &[u8]) -> H256

Create a new fixed-hash from the given slice src.

Note

The given bytes are interpreted in big endian order.

Panics

If the length of src and the number of bytes in Self do not match.

source

pub fn covers(&self, b: &H256) -> bool

Returns true if all bits set in b are also set in self.

source

pub fn is_zero(&self) -> bool

Returns true if no bits are set.

source§

impl H256

Utilities using the byteorder crate.

source

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.

source

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.

source

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.

source

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.
source

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.
source

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.
source§

impl H256

Utilities using the rand crate.

source

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.

source

pub fn randomize(&mut self)

Assign self to a cryptographically random value.

source

pub fn random_using<R>(rng: &mut R) -> H256where
    R: Rng + ?Sized,

Create a new hash with cryptographically random content using the given random number generator.

source

pub fn random() -> H256

Create a new hash with cryptographically random content.

Trait Implementations§

source§

impl AsMut<[u8]> for H256

source§

fn as_mut(&mut self) -> &mut [u8]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<[u8]> for H256

source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'l, 'r> BitAnd<&'r H256> for &'l H256

§

type Output = H256

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'r H256) -> <&'l H256 as BitAnd<&'r H256>>::Output

Performs the & operation. Read more
source§

impl BitAnd<H256> for H256

§

type Output = H256

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: H256) -> <H256 as BitAnd<H256>>::Output

Performs the & operation. Read more
source§

impl<'r> BitAndAssign<&'r H256> for H256

source§

fn bitand_assign(&mut self, rhs: &'r H256)

Performs the &= operation. Read more
source§

impl BitAndAssign<H256> for H256

source§

fn bitand_assign(&mut self, rhs: H256)

Performs the &= operation. Read more
source§

impl<'l, 'r> BitOr<&'r H256> for &'l H256

§

type Output = H256

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'r H256) -> <&'l H256 as BitOr<&'r H256>>::Output

Performs the | operation. Read more
source§

impl BitOr<H256> for H256

§

type Output = H256

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: H256) -> <H256 as BitOr<H256>>::Output

Performs the | operation. Read more
source§

impl<'r> BitOrAssign<&'r H256> for H256

source§

fn bitor_assign(&mut self, rhs: &'r H256)

Performs the |= operation. Read more
source§

impl BitOrAssign<H256> for H256

source§

fn bitor_assign(&mut self, rhs: H256)

Performs the |= operation. Read more
source§

impl<'l, 'r> BitXor<&'r H256> for &'l H256

§

type Output = H256

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'r H256) -> <&'l H256 as BitXor<&'r H256>>::Output

Performs the ^ operation. Read more
source§

impl BitXor<H256> for H256

§

type Output = H256

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: H256) -> <H256 as BitXor<H256>>::Output

Performs the ^ operation. Read more
source§

impl<'r> BitXorAssign<&'r H256> for H256

source§

fn bitxor_assign(&mut self, rhs: &'r H256)

Performs the ^= operation. Read more
source§

impl BitXorAssign<H256> for H256

source§

fn bitxor_assign(&mut self, rhs: H256)

Performs the ^= operation. Read more
source§

impl Clone for H256

source§

fn clone(&self) -> H256

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for H256

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Decode for H256

source§

fn decode<I>(input: &mut I) -> Result<H256, Error>where
    I: Input,

Attempt to deserialise the value from input.
source§

fn skip<I>(input: &mut I) -> Result<(), Error>where
    I: Input,

Attempt to skip the encoded value from input. Read more
source§

fn encoded_fixed_size() -> Option<usize>

Returns the fixed encoded size of the type. Read more
source§

impl Default for H256

source§

fn default() -> H256

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for H256

source§

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
source§

impl Display for H256

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Encode for H256

source§

fn using_encoded<R, F>(&self, f: F) -> Rwhere
    F: FnOnce(&[u8]) -> R,

Convert self to a slice and then invoke the given closure with it.
source§

fn size_hint(&self) -> usize

If possible give a hint of expected size of the encoding. Read more
source§

fn encode_to<T>(&self, dest: &mut T)where
    T: Output + ?Sized,

Convert self to a slice and append it to the destination.
source§

fn encode(&self) -> Vec<u8, Global>

Convert self to an owned vector.
source§

fn encoded_size(&self) -> usize

Calculates the encoded size. Read more
source§

impl<'a> From<&'a [u8; 32]> for H256

source§

fn from(bytes: &'a [u8; 32]) -> H256

Constructs a hash type from the given reference to the bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

source§

impl<'a> From<&'a mut [u8; 32]> for H256

source§

fn from(bytes: &'a mut [u8; 32]) -> H256

Constructs a hash type from the given reference to the mutable bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

source§

impl From<[u8; 32]> for H256

source§

fn from(bytes: [u8; 32]) -> H256

Constructs a hash type from the given bytes array of fixed length.

Note

The given bytes are interpreted in big endian order.

source§

impl From<H160> for H256

source§

fn from(value: H160) -> H256

Converts to this type from the input type.
source§

impl From<H256> for H160

source§

fn from(value: H256) -> H160

Converts to this type from the input type.
source§

impl From<Public> for H256

source§

fn from(x: Public) -> Self

Converts to this type from the input type.
source§

impl From<Public> for H256

source§

fn from(x: Public) -> H256

Converts to this type from the input type.
source§

impl FromStr for H256

source§

fn from_str(input: &str) -> Result<H256, FromHexError>

Creates a hash type instance from the given string.

Note

The given input string is interpreted in big endian.

Errors
  • When encountering invalid non hex-digits
  • Upon empty string input or invalid input length in general
§

type Err = FromHexError

The associated error which can be returned from parsing.
source§

impl Hash for H256

source§

fn hash<H>(&self, state: &mut H)where
    H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where
    H: Hasher,
    Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<I> Index<I> for H256where
    I: SliceIndex<[u8]>,

§

type Output = <I as SliceIndex<[u8]>>::Output

The returned type after indexing.
source§

fn index(&self, index: I) -> &<I as SliceIndex<[u8]>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<I> IndexMut<I> for H256where
    I: SliceIndex<[u8], Output = [u8]>,

source§

fn index_mut(&mut self, index: I) -> &mut <I as SliceIndex<[u8]>>::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl LowerHex for H256

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter.
source§

impl MaxEncodedLen for H256

source§

fn max_encoded_len() -> usize

Upper bound, in bytes, of the maximum encoded size of this item.
source§

impl Ord for H256

source§

fn cmp(&self, other: &H256) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere
    Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere
    Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere
    Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<H256> for H256

source§

fn eq(&self, other: &H256) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<H256> for H256

source§

fn partial_cmp(&self, other: &H256) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl PassBy for H256

§

type PassBy = Inner<H256, [u8; 32]>

The strategy that should be used to pass the type.
source§

impl PassByInner for H256

§

type Inner = [u8; 32]

The inner type that is wrapped by Self.
source§

fn inner(&self) -> &<H256 as PassByInner>::Inner

Returns the reference to the inner type.
source§

fn into_inner(self) -> <H256 as PassByInner>::Inner

Consumes self and returns the inner type.
source§

fn from_inner(inner: <H256 as PassByInner>::Inner) -> H256

Construct Self from the given inner.
source§

impl Serialize for H256

source§

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
source§

impl TypeInfo for H256

§

type Identity = H256

The type identifying for which type info is provided. Read more
source§

fn type_info() -> Type<MetaForm>

Returns the static type identifier for Self.
source§

impl UncheckedFrom<H256> for AccountId32

source§

fn unchecked_from(h: H256) -> Self

Convert from an instance of T to Self. This is not guaranteed to be whatever counts as a valid instance of T and it’s up to the caller to ensure that it makes sense.
source§

impl UncheckedFrom<H256> for Public

source§

fn unchecked_from(x: H256) -> Self

Convert from an instance of T to Self. This is not guaranteed to be whatever counts as a valid instance of T and it’s up to the caller to ensure that it makes sense.
source§

impl UncheckedFrom<H256> for Public

source§

fn unchecked_from(x: H256) -> Self

Convert from an instance of T to Self. This is not guaranteed to be whatever counts as a valid instance of T and it’s up to the caller to ensure that it makes sense.
source§

impl UpperHex for H256

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter.
source§

impl Copy for H256

source§

impl EncodeLike<H256> for H256

source§

impl Eq for H256

Auto Trait Implementations§

§

impl RefUnwindSafe for H256

§

impl Send for H256

§

impl Sync for H256

§

impl Unpin for H256

§

impl UnwindSafe for H256

Blanket Implementations§

source§

impl<T> Any for Twhere
    T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T, U> AsByteSlice<T> for Uwhere
    T: ToByteSlice,
    U: AsRef<[T]> + ?Sized,

§

fn as_byte_slice(&self) -> &[u8]

§

impl<T, U> AsMutByteSlice<T> for Uwhere
    T: ToMutByteSlice,
    U: AsMut<[T]> + ?Sized,

§

fn as_mut_byte_slice(&mut self) -> &mut [u8]

§

impl<U> AsMutSliceOf for Uwhere
    U: AsMut<[u8]> + ?Sized,

§

fn as_mut_slice_of<T>(&mut self) -> Result<&mut [T], Error>where
    T: FromByteSlice,

§

impl<U> AsSliceOf for Uwhere
    U: AsRef<[u8]> + ?Sized,

§

fn as_slice_of<T>(&self) -> Result<&[T], Error>where
    T: FromByteSlice,

source§

impl<T> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CallHasher for Twhere
    T: Hash + ?Sized,

§

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64where
    H: Hash + ?Sized,
    B: BuildHasher,

source§

impl<T> DecodeAll for Twhere
    T: Decode,

source§

fn decode_all(input: &mut &[u8]) -> Result<T, Error>

Decode Self and consume all of the given input data. Read more
source§

impl<T> DecodeLimit for Twhere
    T: Decode,

source§

fn decode_all_with_depth_limit(limit: u32, input: &mut &[u8]) -> Result<T, Error>

Decode Self and consume all of the given input data. Read more
source§

fn decode_with_depth_limit<I>(limit: u32, input: &mut I) -> Result<T, Error>where
    I: Input,

Decode Self with the given maximum recursion depth and advance input by the number of bytes consumed. Read more
§

impl<T> Downcast for Twhere
    T: Any,

§

fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for Twhere
    T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send + 'static>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> DynClone for Twhere
    T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromFFIValue for Twhere
    T: PassBy,

§

type SelfInstance = T

As Self can be an unsized type, it needs to be represented by a sized type at the host. This SelfInstance is the sized type.
source§

fn from_ffi_value(
    context: &mut dyn FunctionContext,
    arg: <<T as PassBy>::PassBy as RIType>::FFIType
) -> Result<T, String>

Create SelfInstance from the given
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere
    U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoFFIValue for Twhere
    T: PassBy,

source§

fn into_ffi_value(
    self,
    context: &mut dyn FunctionContext
) -> Result<<<T as PassBy>::PassBy as RIType>::FFIType, String>

Convert self into a ffi value.
source§

impl<T, Outer> IsWrappedBy<Outer> for Twhere
    Outer: AsRef<T> + AsMut<T> + From<T>,
    T: From<Outer>,

source§

fn from_ref(outer: &Outer) -> &T

Get a reference to the inner from the outer.

source§

fn from_mut(outer: &mut Outer) -> &mut T

Get a mutable reference to the inner from the outer.

source§

impl<T> KeyedVec for Twhere
    T: Codec,

source§

fn to_keyed_vec(&self, prepend_key: &[u8]) -> Vec<u8, Global>

Return an encoding of Self prepended by given slice.
source§

impl<T> RIType for Twhere
    T: PassBy,

§

type FFIType = <<T as PassBy>::PassBy as RIType>::FFIType

The ffi type that is used to represent Self.
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToHex for Twhere
    T: AsRef<[u8]>,

source§

fn encode_hex<U>(&self) -> Uwhere
    U: FromIterator<char>,

Encode the hex strict representing self into the result. Lower case letters are used (e.g. f9b4ca)
source§

fn encode_hex_upper<U>(&self) -> Uwhere
    U: FromIterator<char>,

Encode the hex strict representing self into the result. Upper case letters are used (e.g. F9B4CA)
source§

impl<T> ToOwned for Twhere
    T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere
    T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<S, T> UncheckedInto<T> for Swhere
    T: UncheckedFrom<S>,

source§

fn unchecked_into(self) -> T

The counterpart to unchecked_from.
§

impl<V, T> VZip<V> for Twhere
    V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
    S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<S> Codec for Swhere
    S: Decode + Encode,

source§

impl<T> DeserializeOwned for Twhere
    T: for<'de> Deserialize<'de>,

source§

impl<T> EncodeLike<&&T> for Twhere
    T: Encode,

source§

impl<T> EncodeLike<&T> for Twhere
    T: Encode,

source§

impl<T> EncodeLike<&mut T> for Twhere
    T: Encode,

source§

impl<T> EncodeLike<Arc<T>> for Twhere
    T: Encode,

source§

impl<T> EncodeLike<Box<T, Global>> for Twhere
    T: Encode,

source§

impl<'a, T> EncodeLike<Cow<'a, T>> for Twhere
    T: ToOwned + Encode,

source§

impl<T> EncodeLike<Rc<T>> for Twhere
    T: Encode,

source§

impl<S> FullCodec for Swhere
    S: Decode + FullEncode,

source§

impl<S> FullEncode for Swhere
    S: Encode + EncodeLike<S>,

source§

impl<T> MaybeDebug for Twhere
    T: Debug,

§

impl<T> MaybeRefUnwindSafe for Twhere
    T: RefUnwindSafe,

source§

impl<T> StaticTypeInfo for Twhere
    T: TypeInfo + 'static,