pub type AccountResult = Result<Vec<Solution>, PortfolioError>;Expand description
Per-account outcome of solve_batch: all step solutions in order, or
the error that stopped that account.
Aliased Type§
pub enum AccountResult {
Ok(Vec<Solution>),
Err(PortfolioError),
}