pub trait FromBech32: Sized {
    type Err;

    // Required method
    fn from_bech32<S>(s: S) -> Result<Self, Self::Err>
       where S: Into<String>;
}

Required Associated Types§

Required Methods§

source

fn from_bech32<S>(s: S) -> Result<Self, Self::Err>where S: Into<String>,

Implementors§