pub trait EndPtr { type Item; // Required method fn end_ptr(&self) -> *const Self::Item; }
A convenience trait that provides end_ptr() method for slices.
end_ptr()
Type of item.
Returns pointer to the end of the slice (past the last element).