pub struct DecodedSourceMapSegmentV0 {
pub generated_line: usize,
pub generated_utf16_column: usize,
pub source_index: usize,
pub original_line: usize,
pub original_utf16_column: usize,
pub name_index: Option<usize>,
}Fields§
§generated_line: usize§generated_utf16_column: usize§source_index: usize§original_line: usize§original_utf16_column: usize§name_index: Option<usize>Trait Implementations§
Source§impl Clone for DecodedSourceMapSegmentV0
impl Clone for DecodedSourceMapSegmentV0
Source§fn clone(&self) -> DecodedSourceMapSegmentV0
fn clone(&self) -> DecodedSourceMapSegmentV0
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DecodedSourceMapSegmentV0
impl Debug for DecodedSourceMapSegmentV0
impl Eq for DecodedSourceMapSegmentV0
impl StructuralPartialEq for DecodedSourceMapSegmentV0
Auto Trait Implementations§
impl Freeze for DecodedSourceMapSegmentV0
impl RefUnwindSafe for DecodedSourceMapSegmentV0
impl Send for DecodedSourceMapSegmentV0
impl Sync for DecodedSourceMapSegmentV0
impl Unpin for DecodedSourceMapSegmentV0
impl UnsafeUnpin for DecodedSourceMapSegmentV0
impl UnwindSafe for DecodedSourceMapSegmentV0
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.