[−][src]Struct ckb_fixed_hash::H512
The 64-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 H512
[src]
pub fn as_bytes(&self) -> &[u8]
[src]
Converts Self
to a byte slice.
pub fn from_slice(input: &[u8]) -> Result<H512, FromSliceError>
[src]
To convert the byte slice back into Self
.
impl H512
[src]
pub fn from_trimmed_str(input: &str) -> Result<H512, 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::H512 as Hash; const bytes_size: usize = 64; 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 AsMut<[u8]> for H512
[src]
impl AsRef<[u8]> for H512
[src]
impl Clone for H512
[src]
impl Debug for H512
[src]
impl Default for H512
[src]
impl<'de> Deserialize<'de> for H512
[src]
pub fn deserialize<D>(
deserializer: D
) -> Result<H512, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
[src]
deserializer: D
) -> Result<H512, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
impl Display for H512
[src]
impl Eq for H512
[src]
impl From<[u8; 64]> for H512
[src]
impl FromStr for H512
[src]
type Err = FromStrError
The associated error which can be returned from parsing.
pub fn from_str(input: &str) -> Result<H512, <H512 as FromStr>::Err>
[src]
impl Hash for H512
[src]
pub fn hash<H>(&self, state: &mut H) where
H: Hasher,
[src]
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl LowerHex for H512
[src]
impl Ord for H512
[src]
pub fn cmp(&self, other: &H512) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<H512> for H512
[src]
impl PartialOrd<H512> for H512
[src]
pub fn partial_cmp(&self, other: &H512) -> Option<Ordering>
[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Serialize for H512
[src]
pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
[src]
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
Auto Trait Implementations
impl RefUnwindSafe for H512
impl Send for H512
impl Sync for H512
impl Unpin for H512
impl UnwindSafe for H512
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,