pub struct ParseFiber {
pub id: u64,
pub start_offset: usize,
pub depth: usize,
pub state_repr: String,
}Expand description
A “fiber” representing a partial parse continuation.
Fields§
§id: u64§start_offset: usize§depth: usize§state_repr: StringImplementations§
Auto Trait Implementations§
impl Freeze for ParseFiber
impl RefUnwindSafe for ParseFiber
impl Send for ParseFiber
impl Sync for ParseFiber
impl Unpin for ParseFiber
impl UnsafeUnpin for ParseFiber
impl UnwindSafe for ParseFiber
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