pub enum RelocationTargetResolverwhere
LocalFunctionIndex: Archive,
LibCall: Archive,
SectionIndex: Archive,{
LocalFunc(Resolver<LocalFunctionIndex>),
LibCall(Resolver<LibCall>),
CustomSection(Resolver<SectionIndex>),
}
Expand description
The resolver for an archived RelocationTarget
Variants§
LocalFunc(Resolver<LocalFunctionIndex>)
Tuple Fields
§
0: Resolver<LocalFunctionIndex>
The resolver for RelocationTarget::LocalFunc::0
The resolver for RelocationTarget::LocalFunc
LibCall(Resolver<LibCall>)
Tuple Fields
§
0: Resolver<LibCall>
The resolver for RelocationTarget::LibCall::0
The resolver for RelocationTarget::LibCall
CustomSection(Resolver<SectionIndex>)
Tuple Fields
§
0: Resolver<SectionIndex>
The resolver for RelocationTarget::CustomSection::0
The resolver for RelocationTarget::CustomSection
Auto Trait Implementations§
impl RefUnwindSafe for RelocationTargetResolver
impl Send for RelocationTargetResolver
impl Sync for RelocationTargetResolver
impl Unpin for RelocationTargetResolver
impl UnwindSafe for RelocationTargetResolver
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.