pub trait ICapeIntegerParameter {
// Required methods
fn get_value(&mut self) -> Result<CapeInteger, COBIAError>;
fn set_value(&mut self, value: CapeInteger) -> Result<(), COBIAError>;
fn get_default_value(&mut self) -> Result<CapeInteger, COBIAError>;
fn get_lower_bound(&mut self) -> Result<CapeInteger, COBIAError>;
fn get_upper_bound(&mut self) -> Result<CapeInteger, COBIAError>;
fn validate(
&mut self,
value: CapeInteger,
message: &mut CapeStringOut<'_>,
) -> Result<CapeBoolean, COBIAError>;
}Expand description
ICapeIntegerParameter
ICapeIntegerParameter interface