pub struct ArchivedSourceMapInner{
pub sources: Archived<Vec<String>>,
pub sources_content: Archived<Vec<String>>,
pub names: Archived<Vec<String>>,
pub mapping_lines: Archived<Vec<MappingLine>>,
}
Expand description
An archived SourceMapInner
Fields§
§sources: Archived<Vec<String>>
The archived counterpart of SourceMapInner::sources
sources_content: Archived<Vec<String>>
The archived counterpart of SourceMapInner::sources_content
names: Archived<Vec<String>>
The archived counterpart of SourceMapInner::names
mapping_lines: Archived<Vec<MappingLine>>
The archived counterpart of SourceMapInner::mapping_lines
Auto Trait Implementations§
impl Freeze for ArchivedSourceMapInner
impl RefUnwindSafe for ArchivedSourceMapInner
impl Send for ArchivedSourceMapInner
impl Sync for ArchivedSourceMapInner
impl !Unpin for ArchivedSourceMapInner
impl UnwindSafe for ArchivedSourceMapInner
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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