IntoCursor

Trait IntoCursor 

Source
pub trait IntoCursor {
    type Cursor: Cursor;

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

Regex and regex-cursor related code

Required Associated Types§

Required Methods§

Source

fn into_cursor(self) -> Self::Cursor

Implementors§

Source§

impl<C> IntoCursor for C
where C: Cursor,