pub struct State<'a> {
pub line: usize,
pub column: usize,
pub column_byte: usize,
pub absolute_indent: &'a str,
pub is_parenthesized: bool,
pub byte_offset: usize,
}
Fields§
§line: usize
§column: usize
§column_byte: usize
§absolute_indent: &'a str
§is_parenthesized: bool
§byte_offset: usize
Trait Implementations§
impl<'a> Eq for State<'a>
impl<'a> StructuralPartialEq for State<'a>
Auto Trait Implementations§
impl<'a> Freeze for State<'a>
impl<'a> RefUnwindSafe for State<'a>
impl<'a> Send for State<'a>
impl<'a> Sync for State<'a>
impl<'a> Unpin for State<'a>
impl<'a> UnwindSafe for State<'a>
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