2021-06-09 23:11:35 -04:00
|
|
|
#[derive(Debug)]
|
2015-08-23 14:12:39 -04:00
|
|
|
pub enum EntryPointType {
|
|
|
|
|
None,
|
|
|
|
|
MainNamed,
|
2022-06-22 18:23:21 +02:00
|
|
|
RustcMainAttr,
|
2015-08-23 14:12:39 -04:00
|
|
|
Start,
|
|
|
|
|
OtherMain, // Not an entry point, but some other function named main
|
|
|
|
|
}
|