pub struct Mapping {
pub generated_line: u32,
pub generated_column: u32,
pub source: u32,
pub original_line: u32,
pub original_column: u32,
pub name: u32,
}Expand description
A single decoded mapping entry. Compact at 24 bytes (6 × u32).
Fields§
§generated_line: u32§generated_column: u32§source: u32Index into SourceMap::sources. u32::MAX if absent.
original_line: u32§original_column: u32§name: u32Index into SourceMap::names. u32::MAX if absent.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Mapping
impl RefUnwindSafe for Mapping
impl Send for Mapping
impl Sync for Mapping
impl Unpin for Mapping
impl UnsafeUnpin for Mapping
impl UnwindSafe for Mapping
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