Type Alias diesel::serialize::Result

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

A specialized result type representing the result of serializing a value for the database.

Aliased Type§

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

Variants§

§1.0.0

Ok(IsNull)

Contains the success value

§1.0.0

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

Contains the error value