pub struct LiveParser<'a> {
    pub token_index: usize,
    pub file_id: LiveFileId,
    pub live_type_info_counter: usize,
    pub live_type_infos: &'a [LiveTypeInfo],
    pub tokens_with_span: Cloned<Iter<'a, TokenWithSpan>>,
    pub token_with_span: TokenWithSpan,
    pub end: TextPos,
}

Fields

token_index: usizefile_id: LiveFileIdlive_type_info_counter: usizelive_type_infos: &'a [LiveTypeInfo]tokens_with_span: Cloned<Iter<'a, TokenWithSpan>>token_with_span: TokenWithSpanend: TextPos

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.