Struct ckb_fixed_hash_core::H160 [−][src]
Expand description
The 20-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.
Implementations
impl H160[src]
impl H160[src]pub fn from_trimmed_str(input: &str) -> Result<Self, FromStrError>[src]
pub fn from_trimmed_str(input: &str) -> Result<Self, FromStrError>[src]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::H160 as Hash; const BYTES_SIZE: usize = 20; 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
impl<'de> Deserialize<'de> for H160[src]
impl<'de> Deserialize<'de> for H160[src]fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>, [src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl Ord for H160[src]
impl Ord for H160[src]impl PartialOrd<H160> for H160[src]
impl PartialOrd<H160> for H160[src]fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Eq for H160[src]
Auto Trait Implementations
impl RefUnwindSafe for H160
impl Send for H160
impl Sync for H160
impl Unpin for H160
impl UnwindSafe for H160
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,