pub struct Position {
pub offset: usize,
pub line: usize,
pub col: usize,
}Expand description
Represents a position in the source document.
The PartialEq implementation allows for a “any” position (all zero), which is
equal to any other position. This is used to reduce clutter in tests, where
a default Position (“{}”) can be used where the actual representation is irrelevant.
Fields§
§offset: usize§line: usize§col: usizeImplementations§
Source§impl Position
impl Position
pub fn new(offset: usize, slocs: &[SourceLine<'_>]) -> Self
pub fn any_position() -> Self
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Position
impl<'de> Deserialize<'de> for Position
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Position
impl RefUnwindSafe for Position
impl Send for Position
impl Sync for Position
impl Unpin for Position
impl UnwindSafe for Position
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