[][src]Trait sp_transaction_pool::error::IntoPoolError

pub trait IntoPoolError: Error + Send + Sized {
    fn into_pool_error(self) -> Result<Error, Self> { ... }
}

Transaction pool error conversion.

Provided methods

fn into_pool_error(self) -> Result<Error, Self>

Try to extract original Error

This implementation is optional and used only to provide more descriptive error messages for end users of RPC API.

Loading content...

Implementors

impl IntoPoolError for Error[src]

Loading content...