pub struct LexResult {
pub buffer: TokenizedBuffer,
pub errors: Vec<ErrorInfo>,
}
Expand description
Result of lexing
Fields§
§buffer: TokenizedBuffer
§errors: Vec<ErrorInfo>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LexResult
impl RefUnwindSafe for LexResult
impl Send for LexResult
impl Sync for LexResult
impl Unpin for LexResult
impl UnwindSafe for LexResult
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