Type Alias diesel::query_builder::BuildQueryResult

source ·
pub type BuildQueryResult = Result<(), Box<dyn Error + Send + Sync>>;
Expand description

A specialized Result type used with the query builder.

Aliased Type§

enum BuildQueryResult {
    Ok(()),
    Err(Box<dyn Error + Sync + Send>),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Box<dyn Error + Sync + Send>)

Contains the error value