pub trait LineIteratorTraitConst {
Show 16 methods
// Required method
fn as_raw_LineIterator(&self) -> *const c_void;
// Provided methods
fn ptr(&self) -> *const u8 { ... }
fn ptr0(&self) -> *const u8 { ... }
fn step(&self) -> i32 { ... }
fn elem_size(&self) -> i32 { ... }
fn err(&self) -> i32 { ... }
fn count(&self) -> i32 { ... }
fn minus_delta(&self) -> i32 { ... }
fn plus_delta(&self) -> i32 { ... }
fn minus_step(&self) -> i32 { ... }
fn plus_step(&self) -> i32 { ... }
fn minus_shift(&self) -> i32 { ... }
fn plus_shift(&self) -> i32 { ... }
fn p(&self) -> Point { ... }
fn ptmode(&self) -> bool { ... }
fn pos(&self) -> Result<Point> { ... }
}
Expand description
Constant methods for crate::imgproc::LineIterator