pub type ColumnResult<T> = Result<T, Box<dyn StdError + Send + Sync>>;
Expand description
Alias type for a column value wrapped in Result
.
Aliased Type§
enum ColumnResult<T> {
Ok(T),
Err(Box<dyn Error + Send + Sync>),
}
Variants§
Ok(T)
Contains the success value
Err(Box<dyn Error + Send + Sync>)
Contains the error value
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.