Type Alias diesel::deserialize::Result
source · pub type Result<T> = Result<T, Box<dyn Error + Send + Sync>>;
Expand description
A specialized result type representing the result of deserializing a value from the database.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Box<dyn Error + Send + Sync>),
}