pub struct FormatStringParser<'a, 'b> {
tokens: Lexer<'b, TokenKind>,
offset: usize,
parser: &'b mut Parser<'a>,
}
Fields§
§tokens: Lexer<'b, TokenKind>
§offset: usize
§parser: &'b mut Parser<'a>
Implementations§
Auto Trait Implementations§
impl<'a, 'b> RefUnwindSafe for FormatStringParser<'a, 'b>
impl<'a, 'b> Send for FormatStringParser<'a, 'b>
impl<'a, 'b> Sync for FormatStringParser<'a, 'b>
impl<'a, 'b> Unpin for FormatStringParser<'a, 'b>
impl<'a, 'b> !UnwindSafe for FormatStringParser<'a, 'b>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more