pub trait DictValueTraitConst {
    fn as_raw_DictValue(&self) -> *const c_void;

    fn get_str(&self, idx: i32) -> Result<String> { ... }
    fn get_f64(&self, idx: i32) -> Result<f64> { ... }
    fn get_i32(&self, idx: i32) -> Result<i32> { ... }
    fn get_i64(&self, idx: i32) -> Result<i64> { ... }
    fn size(&self) -> Result<i32> { ... }
    fn is_int(&self) -> Result<bool> { ... }
    fn is_string(&self) -> Result<bool> { ... }
    fn is_real(&self) -> Result<bool> { ... }
    fn get_int_value(&self, idx: i32) -> Result<i32> { ... }
    fn get_real_value(&self, idx: i32) -> Result<f64> { ... }
    fn get_string_value(&self, idx: i32) -> Result<String> { ... }
}
Expand description

This struct stores the scalar value (or array) of one of the following type: double, cv::String or int64. @todo Maybe int64 is useless because double type exactly stores at least 2^52 integers.

Required Methods

Provided Methods

Implementors