Struct ckb_fixed_hash::H520

source ·
pub struct H520(pub [u8; 65]);
Expand description

The 65-byte fixed-length binary data.

The name comes from the number of bits in the data.

In JSONRPC, it is encoded as a 0x-prefixed hex string.

Tuple Fields§

§0: [u8; 65]

Implementations§

source§

impl H520

source

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

Converts Self to a byte slice.

source

pub fn from_slice(input: &[u8]) -> Result<H520, FromSliceError>

To convert the byte slice back into Self.

source§

impl H520

source

pub fn from_trimmed_str(input: &str) -> Result<H520, FromStrError>

To convert a trimmed hexadecimal string into Self.

If the beginning of a hexadecimal string are one or more zeros, then these zeros should be omitted.

There should be only one zero at the beginning of a hexadecimal string at most.

For example, if x is H16 (a 16 bits binary data):

  • when x = [0, 0], the trimmed hexadecimal string should be “0” or “”.
  • when x = [0, 1], the trimmed hexadecimal string should be “1”.
  • when x = [1, 0], the trimmed hexadecimal string should be “100”.
use ckb_fixed_hash_core::H520 as Hash;
const BYTES_SIZE: usize = 65;

let mut inner = [0u8; BYTES_SIZE];

{
    let actual = Hash(inner.clone());
    let expected1 = Hash::from_trimmed_str("").unwrap();
    let expected2 = Hash::from_trimmed_str("0").unwrap();
    assert_eq!(actual, expected1);
    assert_eq!(actual, expected2);
}

{
    inner[BYTES_SIZE - 1] = 1;
    let actual = Hash(inner);
    let expected = Hash::from_trimmed_str("1").unwrap();
    assert_eq!(actual, expected);
}

{
    assert!(Hash::from_trimmed_str("00").is_err());
    assert!(Hash::from_trimmed_str("000").is_err());
    assert!(Hash::from_trimmed_str("0000").is_err());
    assert!(Hash::from_trimmed_str("01").is_err());
    assert!(Hash::from_trimmed_str("001").is_err());
    assert!(Hash::from_trimmed_str("0001").is_err());
}

Trait Implementations§

source§

impl AsMut<[u8]> for H520

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 H520

source§

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

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

impl Clone for H520

source§

fn clone(&self) -> H520

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 H520

source§

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

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

impl Default for H520

source§

fn default() -> H520

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

impl<'de> Deserialize<'de> for H520

source§

fn deserialize<D>( deserializer: D ) -> Result<H520, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for H520

source§

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

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

impl From<[u8; 65]> for H520

source§

fn from(bytes: [u8; 65]) -> H520

Converts to this type from the input type.
source§

impl FromStr for H520

§

type Err = FromStrError

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

fn from_str(input: &str) -> Result<H520, <H520 as FromStr>::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for H520

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 LowerHex for H520

source§

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

Formats the value using the given formatter.
source§

impl Ord for H520

source§

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

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

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

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

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

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

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

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

impl PartialEq for H520

source§

fn eq(&self, other: &H520) -> 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 for H520

source§

fn partial_cmp(&self, other: &H520) -> 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 Serialize for H520

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 Eq for H520

Auto Trait Implementations§

§

impl Freeze for H520

§

impl RefUnwindSafe for H520

§

impl Send for H520

§

impl Sync for H520

§

impl Unpin for H520

§

impl UnwindSafe for H520

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

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

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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> ToOwned for T
where 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 T
where 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 T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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