union Entry [src]
Fields
defaultLet the compiler decide whether to make an entry point and what to name
it.
disabledThe executable will have no entry point.
enabledThe executable will have an entry point with the default symbol name.
symbol_name: []const u8The executable will have an entry point with the specified symbol name.
Source
pub const Entry = union(enum) {
/// Let the compiler decide whether to make an entry point and what to name
/// it.
default,
/// The executable will have no entry point.
disabled,
/// The executable will have an entry point with the default symbol name.
enabled,
/// The executable will have an entry point with the specified symbol name.
symbol_name: []const u8,
}