pub struct ResolvedLabel<'a> {
pub message: &'a str,
pub span: Span,
pub start: LineCol,
pub end: LineCol,
pub text: &'a str,
}Fields§
§message: &'a str§span: Span§start: LineCol§end: LineCol§text: &'a strThe exact source text the label points at.
Trait Implementations§
Source§impl<'a> Debug for ResolvedLabel<'a>
impl<'a> Debug for ResolvedLabel<'a>
Auto Trait Implementations§
impl<'a> Freeze for ResolvedLabel<'a>
impl<'a> RefUnwindSafe for ResolvedLabel<'a>
impl<'a> Send for ResolvedLabel<'a>
impl<'a> Sync for ResolvedLabel<'a>
impl<'a> Unpin for ResolvedLabel<'a>
impl<'a> UnsafeUnpin for ResolvedLabel<'a>
impl<'a> UnwindSafe for ResolvedLabel<'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