[][src]Struct ckb_fixed_hash::H520

pub struct H520(pub [u8; 65]);

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.

Implementations

impl H520[src]

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

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

impl H520[src]

Trait Implementations

impl AsMut<[u8]> for H520[src]

impl AsRef<[u8]> for H520[src]

impl Clone for H520[src]

impl Debug for H520[src]

impl Default for H520[src]

impl<'de> Deserialize<'de> for H520[src]

impl Display for H520[src]

impl Eq for H520[src]

impl From<[u8; 65]> for H520[src]

impl FromStr for H520[src]

type Err = FromStrError

The associated error which can be returned from parsing.

impl Hash for H520[src]

impl LowerHex for H520[src]

impl Ord for H520[src]

impl PartialEq<H520> for H520[src]

impl PartialOrd<H520> for H520[src]

impl Serialize for H520[src]

Auto Trait Implementations

impl RefUnwindSafe for H520

impl Send for H520

impl Sync for H520

impl Unpin for H520

impl UnwindSafe for H520

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.