[][src]Struct yarte_lexer::Cursor

pub struct Cursor<'a> {
    pub rest: &'a str,
    // some fields omitted
}

Fields

rest: &'a str

Implementations

impl<'a> Cursor<'a>[src]

pub unsafe fn new(rest: &str, off: u32) -> Cursor<'_>[src]

Create new unregistered cursor

Safety

Use get_cursor function instead for registered cursor

pub fn off(&self) -> usize[src]

pub fn adv(&self, amt: usize) -> Cursor<'a>[src]

pub fn adv_ascii(&self, s: &[Ascii]) -> Cursor<'a>[src]

pub fn find(&self, p: Ascii) -> Option<usize>[src]

pub fn adv_find(&self, amt: usize, p: Ascii) -> Option<usize>[src]

pub fn adv_starts_with(&self, amt: usize, s: &'static [Ascii]) -> bool[src]

pub fn starts_with(&self, s: &'static [Ascii]) -> bool[src]

pub fn next_is(&self, c: Ascii) -> bool[src]

pub fn adv_next_is(&self, amt: usize, c: Ascii) -> bool[src]

pub fn is_empty(&self) -> bool[src]

pub fn as_bytes(&self) -> &[u8][src]

pub fn bytes(&self) -> Bytes<'_>[src]

pub fn len(&self) -> usize[src]

pub fn chars(&self) -> Chars<'_>[src]

Trait Implementations

impl<'a> Clone for Cursor<'a>[src]

impl<'a> Copy for Cursor<'a>[src]

impl<'a> Debug for Cursor<'a>[src]

impl<'a> Eq for Cursor<'a>[src]

impl<'a> From<Cursor<'a>> for Span[src]

impl<'a> PartialEq<Cursor<'a>> for Cursor<'a>[src]

impl<'a> StructuralEq for Cursor<'a>[src]

impl<'a> StructuralPartialEq for Cursor<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Cursor<'a>

impl<'a> Send for Cursor<'a>

impl<'a> Sync for Cursor<'a>

impl<'a> Unpin for Cursor<'a>

impl<'a> UnwindSafe for Cursor<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.