pub type SolverResult<T> = Result<T, SolverError>;Expand description
Result type for solver operations.
Aliased Type§
pub enum SolverResult<T> {
Ok(T),
Err(SolverError),
}pub type SolverResult<T> = Result<T, SolverError>;Result type for solver operations.
pub enum SolverResult<T> {
Ok(T),
Err(SolverError),
}