Type Definition 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.