[][src]Trait dusk_bytes::ParseHexStr

pub trait ParseHexStr<const N: usize>: Serializable<N> {
    pub fn from_hex_str(s: &str) -> Result<Self, Self::Error>
    where
        Self: Sized,
        Self::Error: BadLength + InvalidChar
, { ... } }

An optional trait used to parse a string slice for types that implements the Serializable trait. The default implementation makes use of Serializable trait to provide the necessary parsing functionality without additional code from the consumer.

Provided methods

pub fn from_hex_str(s: &str) -> Result<Self, Self::Error> where
    Self: Sized,
    Self::Error: BadLength + InvalidChar
[src]

Parse a string slice as bytes hex representation and returns `

Loading content...

Implementors

impl<T, const N: usize> ParseHexStr<N> for T where
    T: Serializable<N>, 
[src]

Loading content...