pub struct SourceMapMetadata {
pub sources_count: usize,
pub names_count: usize,
pub mappings_count: usize,
pub lines_count: usize,
pub has_sources_content: bool,
pub is_indexed: bool,
}Expand description
Metadata about a source map.
Fields§
§sources_count: usizeNumber of sources.
names_count: usizeNumber of names.
mappings_count: usizeNumber of mappings.
lines_count: usizeNumber of lines.
has_sources_content: boolWhether sources content is included.
is_indexed: boolWhether it’s an indexed source map.
Trait Implementations§
Source§impl Clone for SourceMapMetadata
impl Clone for SourceMapMetadata
Source§fn clone(&self) -> SourceMapMetadata
fn clone(&self) -> SourceMapMetadata
Returns a duplicate of the value. Read more
1.0.0 · 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 SourceMapMetadata
impl Debug for SourceMapMetadata
Auto Trait Implementations§
impl Freeze for SourceMapMetadata
impl RefUnwindSafe for SourceMapMetadata
impl Send for SourceMapMetadata
impl Sync for SourceMapMetadata
impl Unpin for SourceMapMetadata
impl UnsafeUnpin for SourceMapMetadata
impl UnwindSafe for SourceMapMetadata
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