pub struct ParserCursor {
cursor: usize,
pre_ws_cursor: usize,
last_ws_len: usize,
}Fields§
§cursor: usize§pre_ws_cursor: usize§last_ws_len: usizeTrait Implementations§
Source§impl Clone for ParserCursor
impl Clone for ParserCursor
Source§fn clone(&self) -> ParserCursor
fn clone(&self) -> ParserCursor
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for ParserCursor
impl PartialEq for ParserCursor
Source§impl PartialOrd for ParserCursor
impl PartialOrd for ParserCursor
impl Copy for ParserCursor
Auto Trait Implementations§
impl Freeze for ParserCursor
impl RefUnwindSafe for ParserCursor
impl Send for ParserCursor
impl Sync for ParserCursor
impl Unpin for ParserCursor
impl UnwindSafe for ParserCursor
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