Trait End

Source
pub trait End {
    type Output;

    // Required method
    unsafe fn end(&self) -> Self::Output;
}
Expand description

Represents C++’s end() const function.

Required Associated Types§

Source

type Output

Output type.

Required Methods§

Source

unsafe fn end(&self) -> Self::Output

Returns a C++ const iterator object pointing to the end of the collection.

§Safety

The caller must make sure self contains a valid pointer. This function may invoke arbitrary foreign code, so no safety guarantees can be made.

Implementors§