Struct wasmer_types::compilation::section::ArchivedCustomSection
source · #[repr()]pub struct ArchivedCustomSectionwhere
CustomSectionProtection: Archive,
SectionBody: Archive,
Vec<Relocation>: Archive,{
pub protection: Archived<CustomSectionProtection>,
pub bytes: Archived<SectionBody>,
pub relocations: Archived<Vec<Relocation>>,
}
Expand description
An archived CustomSection
Fields§
§protection: Archived<CustomSectionProtection>
The archived counterpart of CustomSection::protection
bytes: Archived<SectionBody>
The archived counterpart of CustomSection::bytes
relocations: Archived<Vec<Relocation>>
The archived counterpart of CustomSection::relocations
Auto Trait Implementations§
impl RefUnwindSafe for ArchivedCustomSection
impl Send for ArchivedCustomSection
impl Sync for ArchivedCustomSection
impl !Unpin for ArchivedCustomSection
impl UnwindSafe for ArchivedCustomSection
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§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.