Skip to main content

AssignmentResult

Type Alias AssignmentResult 

Source
pub type AssignmentResult<T> = Result<T, OptimizeError>;
Expand description

Result type for assignment operations.

Aliased Type§

pub enum AssignmentResult<T> {
    Ok(T),
    Err(OptimizeError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(OptimizeError)

Contains the error value