Type Definition block_tools::db::use_diesel::result::ConnectionResult[][src]

type ConnectionResult<T> = Result<T, ConnectionError>;

A specialized result type for establishing connections.

This type exists to avoid writing out diesel::result::ConnectionError, and is otherwise a direct mapping to Result.