[][src]Struct gedcom::tokenizer::Tokenizer

pub struct Tokenizer<'a> {
    pub current_token: Token,
    pub line: u32,
    // some fields omitted
}

Fields

current_token: Tokenline: u32

Implementations

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

#[must_use]pub fn new(chars: Chars<'a>) -> Tokenizer<'_>[src]

#[must_use]pub fn done(&self) -> bool[src]

pub fn next_token(&mut self)[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Tokenizer<'a>

impl<'a> Send for Tokenizer<'a>

impl<'a> Sync for Tokenizer<'a>

impl<'a> Unpin for Tokenizer<'a>

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