pub struct DelimiterEntry {
pub pos: usize,
pub byte: u8,
}Expand description
A structural delimiter found by the indexer.
Fields§
§pos: usizeAbsolute byte offset in the input.
byte: u8The delimiter byte at this position.
Trait Implementations§
Source§impl Clone for DelimiterEntry
impl Clone for DelimiterEntry
Source§fn clone(&self) -> DelimiterEntry
fn clone(&self) -> DelimiterEntry
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 Debug for DelimiterEntry
impl Debug for DelimiterEntry
Source§impl PartialEq for DelimiterEntry
impl PartialEq for DelimiterEntry
impl Copy for DelimiterEntry
impl Eq for DelimiterEntry
impl StructuralPartialEq for DelimiterEntry
Auto Trait Implementations§
impl Freeze for DelimiterEntry
impl RefUnwindSafe for DelimiterEntry
impl Send for DelimiterEntry
impl Sync for DelimiterEntry
impl Unpin for DelimiterEntry
impl UnsafeUnpin for DelimiterEntry
impl UnwindSafe for DelimiterEntry
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