Trait IntoCursor

Source
pub trait IntoCursor {
    type Cursor: Cursor;

    // Required method
    fn into_cursor(self) -> Self::Cursor;
}

Required Associated Types§

Required Methods§

Source

fn into_cursor(self) -> Self::Cursor

Implementations on Foreign Types§

Source§

impl<'a> IntoCursor for &'a Rope

Source§

impl<'a> IntoCursor for RopeSlice<'a>

Implementors§