Trait EndMut

Source
pub trait EndMut {
    type Output;

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

Represents C++’s end() function.

Required Associated Types§

Source

type Output

Output type.

Required Methods§

Source

fn end_mut(self) -> Self::Output

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

Implementors§