Trait ICapeIntegerParameterSpecification

Source
pub trait ICapeIntegerParameterSpecification {
    // Required methods
    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

ICapeIntegerParameterSpecification

ICapeIntegerParameterSpecification interface

Required Methods§

Implementors§