Skip to main content

AccountResult

Type Alias AccountResult 

Source
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),
}

Variants§

§1.0.0

Ok(Vec<Solution>)

Contains the success value

§1.0.0

Err(PortfolioError)

Contains the error value