pub struct SourceMap {
pub version: u32,
pub file: String,
pub source_root: String,
pub sources: Vec<String>,
pub sources_content: Option<Vec<String>>,
pub names: Vec<String>,
pub mappings: String,
}Expand description
Source Map v3 output format
Fields§
§version: u32§file: String§source_root: String§sources: Vec<String>§sources_content: Option<Vec<String>>§names: Vec<String>§mappings: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for SourceMap
impl RefUnwindSafe for SourceMap
impl Send for SourceMap
impl Sync for SourceMap
impl Unpin for SourceMap
impl UnsafeUnpin for SourceMap
impl UnwindSafe for SourceMap
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