logo
pub trait ParseId {
    fn parse_block_id(&self) -> Result<Id, Error>;
}
Expand description

Parse block::Id from a type

Required methods

Parse block::Id, or return an Error if parsing failed

Implementors