pub trait MatSizeTraitConst {
    fn as_raw_MatSize(&self) -> *const c_void;

    fn dims(&self) -> i32 { ... }
    fn get(&self, i: i32) -> Result<i32> { ... }
    fn to_xconst_i32(&self) -> *const i32 { ... }
    fn equals(&self, sz: &MatSize) -> bool { ... }
}

Required Methods

Provided Methods

Implementors