pub struct Marker<'a> {
pub errno: u16,
pub filename: &'a str,
pub location: Coordinate,
}Expand description
Identifies an expected error at a location in a given source file.
Fields§
§errno: u16§filename: &'a str§location: CoordinateAuto Trait Implementations§
impl<'a> Freeze for Marker<'a>
impl<'a> RefUnwindSafe for Marker<'a>
impl<'a> Send for Marker<'a>
impl<'a> Sync for Marker<'a>
impl<'a> Unpin for Marker<'a>
impl<'a> UnwindSafe for Marker<'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