[][src]Struct jomini::TextTape

pub struct TextTape<'a> { /* fields omitted */ }

Houses the tape of tokens that is extracted from plaintext data

Implementations

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

pub fn new() -> Self[src]

Creates a new text tape

pub fn from_slice(data: &[u8]) -> Result<TextTape<'_>, Error>[src]

Convenience method for creating a text parser and parsing the given input

pub fn parser() -> TextTapeParser[src]

Returns a parser for text data

pub fn tokens(&self) -> &[TextToken<'a>][src]

Return the parsed tokens

Trait Implementations

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

impl<'a> Default for TextTape<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for TextTape<'a>

impl<'a> Send for TextTape<'a>

impl<'a> Sync for TextTape<'a>

impl<'a> Unpin for TextTape<'a>

impl<'a> UnwindSafe for TextTape<'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, 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.