enum Relocation [src]
Fields
anyAny type of relocation is allowed.
pcrelA program-counter-relative relocation is required.
Using this value makes the @extern a runtime value.
Source
pub const Relocation = enum(u1) {
/// Any type of relocation is allowed.
any,
/// A program-counter-relative relocation is required.
/// Using this value makes the `@extern` a runtime value.
pcrel,
}