Type Definition diesel::result::QueryResult

source ·
pub type QueryResult<T> = Result<T, Error>;
Expand description

A specialized result type for queries.

This type is exported by diesel::prelude, and is generally used by any code which is interacting with Diesel. This type exists to avoid writing out diesel::result::Error, and is otherwise a direct mapping to Result.

Trait Implementations§

source§

impl<T> OptionalExtension<T> for QueryResult<T>

source§

fn optional(self) -> Result<Option<T>, Error>

Converts a QueryResult<T> into a QueryResult<Option<T>>. Read more