lp-types 0.0.0

Shared types definition for linear programming
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug, Copy, Clone)]
pub enum LpErrorKind {
    UnknownError,
}

pub struct LpError {}

pub type LpResult<T = ()> = std::result::Result<T, LpErrorKind>;