pub type BuildQueryResult = Result<(), Box<dyn Error + Send + Sync>>;
A specialized Result type used with the query builder.
enum BuildQueryResult { Ok(()), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value