Skip to main content

IntoCursor

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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<'a> IntoCursor for &'a Rope

Available on crate feature ropey only.
Source§

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

Available on crate feature ropey only.

Implementors§