pub trait IntoCursor {
type Cursor: Cursor;
// Required method
fn into_cursor(self) -> Self::Cursor;
}Required Associated Types§
Required Methods§
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.
impl<'a> IntoCursor for &'a Rope
Available on crate feature
ropey only.type Cursor = RopeyCursor<'a>
fn into_cursor(self) -> Self::Cursor
Source§impl<'a> IntoCursor for RopeSlice<'a>
Available on crate feature ropey only.
impl<'a> IntoCursor for RopeSlice<'a>
Available on crate feature
ropey only.