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

§

type Cursor = RopeyCursor<'a>

source§

fn into_cursor(self) -> Self::Cursor

source§

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

§

type Cursor = RopeyCursor<'a>

source§

fn into_cursor(self) -> Self::Cursor

Implementors§

source§

impl<C: Cursor> IntoCursor for C

§

type Cursor = C