pub struct FilePos {
pub filename: Rc<String>,
pub offset: usize,
pub line: usize,
pub column: usize,
}
Fields§
§filename: Rc<String>
§offset: usize
§line: usize
§column: usize
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FilePos
impl RefUnwindSafe for FilePos
impl !Send for FilePos
impl !Sync for FilePos
impl Unpin for FilePos
impl UnwindSafe for FilePos
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