@@ -944,106 +944,167 @@ impl fmt::Debug for ArgsOs {
944
944
pub mod consts {
945
945
use crate :: sys:: env:: os;
946
946
947
- /// A string describing the architecture of the CPU that is currently
948
- /// in use .
947
+ /// A string describing the architecture of the CPU that is currently in use.
948
+ /// An example value may be: `"x86"`, `"arm"` or `"riscv64"` .
949
949
///
950
- /// Some possible values:
950
+ /// <details><summary>Full list of possible values</summary>
951
951
///
952
- /// - `x86`
953
- /// - `x86_64`
954
- /// - `arm`
955
- /// - `aarch64`
956
- /// - `loongarch64`
957
- /// - `m68k`
958
- /// - `csky`
959
- /// - `mips`
960
- /// - `mips64`
961
- /// - `powerpc`
962
- /// - `powerpc64`
963
- /// - `riscv64`
964
- /// - `s390x`
965
- /// - `sparc64`
952
+ /// * `"x86"`
953
+ /// * `"x86_64"`
954
+ /// * `"arm"`
955
+ /// * `"aarch64"`
956
+ /// * `"m68k"`
957
+ /// * `"mips"`
958
+ /// * `"mips32r6"`
959
+ /// * `"mips64"`
960
+ /// * `"mips64r6"`
961
+ /// * `"csky"`
962
+ /// * `"powerpc"`
963
+ /// * `"powerpc64"`
964
+ /// * `"riscv32"`
965
+ /// * `"riscv64"`
966
+ /// * `"s390x"`
967
+ /// * `"sparc"`
968
+ /// * `"sparc64"`
969
+ /// * `"hexagon"`
970
+ /// * `"loongarch64"`
971
+ ///
972
+ /// </details>
966
973
#[ stable( feature = "env" , since = "1.0.0" ) ]
967
974
pub const ARCH : & str = env ! ( "STD_ENV_ARCH" ) ;
968
975
969
- /// The family of the operating system. Example value is `unix`.
976
+ /// A string describing the family of the operating system.
977
+ /// An example value may be: `"unix"`, or `"windows"`.
978
+ ///
979
+ /// This value may be an empty string if the family is unknown.
980
+ ///
981
+ /// <details><summary>Full list of possible values</summary>
970
982
///
971
- /// Some possible values:
983
+ /// * `"unix"`
984
+ /// * `"windows"`
985
+ /// * `"itron"`
986
+ /// * `""`
972
987
///
973
- /// - `unix`
974
- /// - `windows`
988
+ /// </details>
975
989
#[ stable( feature = "env" , since = "1.0.0" ) ]
976
990
pub const FAMILY : & str = os:: FAMILY ;
977
991
978
992
/// A string describing the specific operating system in use.
979
- /// Example value is ` linux`.
993
+ /// An example value may be: `" linux"`, or `"freebsd" `.
980
994
///
981
- /// Some possible values:
995
+ /// <details><summary>Full list of possible values</summary>
982
996
///
983
- /// - `linux`
984
- /// - `macos`
985
- /// - `ios`
986
- /// - `freebsd`
987
- /// - `dragonfly`
988
- /// - `netbsd`
989
- /// - `openbsd`
990
- /// - `solaris`
991
- /// - `android`
992
- /// - `windows`
997
+ /// * `"linux"`
998
+ /// * `"windows"`
999
+ /// * `"macos"`
1000
+ /// * `"android"`
1001
+ /// * `"ios"`
1002
+ /// * `"openbsd"`
1003
+ /// * `"freebsd"`
1004
+ /// * `"netbsd"`
1005
+ /// * `"wasi"`
1006
+ /// * `"hermit"`
1007
+ /// * `"aix"`
1008
+ /// * `"apple"`
1009
+ /// * `"dragonfly"`
1010
+ /// * `"emscripten"`
1011
+ /// * `"espidf"`
1012
+ /// * `"fortanix"`
1013
+ /// * `"uefi"`
1014
+ /// * `"fuchsia"`
1015
+ /// * `"haiku"`
1016
+ /// * `"hermit"`
1017
+ /// * `"watchos"`
1018
+ /// * `"visionos"`
1019
+ /// * `"tvos"`
1020
+ /// * `"horizon"`
1021
+ /// * `"hurd"`
1022
+ /// * `"illumos"`
1023
+ /// * `"l4re"`
1024
+ /// * `"nto"`
1025
+ /// * `"redox"`
1026
+ /// * `"solaris"`
1027
+ /// * `"solid_asp3`
1028
+ /// * `"vita"`
1029
+ /// * `"vxworks"`
1030
+ /// * `"xous"`
1031
+ ///
1032
+ /// </details>
993
1033
#[ stable( feature = "env" , since = "1.0.0" ) ]
994
1034
pub const OS : & str = os:: OS ;
995
1035
996
- /// Specifies the filename prefix used for shared libraries on this
997
- /// platform. Example value is `lib`.
998
- ///
999
- /// Some possible values:
1000
- ///
1001
- /// - `lib`
1002
- /// - `""` (an empty string)
1036
+ /// Specifies the filename prefix, if any, used for shared libraries on this platform.
1037
+ /// This is either `"lib"` or an empty string. (`""`).
1003
1038
#[ stable( feature = "env" , since = "1.0.0" ) ]
1004
1039
pub const DLL_PREFIX : & str = os:: DLL_PREFIX ;
1005
1040
1006
- /// Specifies the filename suffix used for shared libraries on this
1007
- /// platform. Example value is `.so`.
1041
+ /// Specifies the filename suffix, if any, used for shared libraries on this platform.
1042
+ /// An example value may be: `".so"`, `".elf"`, or `".dll"`.
1043
+ ///
1044
+ /// <details><summary>Full list of possible values</summary>
1008
1045
///
1009
- /// Some possible values:
1046
+ /// * `".so"`
1047
+ /// * `".dylib"`
1048
+ /// * `".dll"`
1049
+ /// * `".sgxs"`
1050
+ /// * `".a"`
1051
+ /// * `".elf"`
1052
+ /// * `".wasm"`
1053
+ /// * `""` (an empty string)
1010
1054
///
1011
- /// - `.so`
1012
- /// - `.dylib`
1013
- /// - `.dll`
1055
+ /// </details>
1014
1056
#[ stable( feature = "env" , since = "1.0.0" ) ]
1015
1057
pub const DLL_SUFFIX : & str = os:: DLL_SUFFIX ;
1016
1058
1017
- /// Specifies the file extension used for shared libraries on this
1018
- /// platform that goes after the dot. Example value is `so`.
1059
+ /// Specifies the file extension, if any, used for shared libraries on this platform that goes after the dot.
1060
+ /// An example value may be: `"so"`, `"elf"`, or `"dll"`.
1061
+ ///
1062
+ /// <details><summary>Full list of possible values</summary>
1019
1063
///
1020
- /// Some possible values:
1064
+ /// * `"so"`
1065
+ /// * `"dylib"`
1066
+ /// * `"dll"`
1067
+ /// * `"sgxs"`
1068
+ /// * `"a"`
1069
+ /// * `"elf"`
1070
+ /// * `"wasm"`
1071
+ /// * `""` (an empty string)
1021
1072
///
1022
- /// - `so`
1023
- /// - `dylib`
1024
- /// - `dll`
1073
+ /// </details>
1025
1074
#[ stable( feature = "env" , since = "1.0.0" ) ]
1026
1075
pub const DLL_EXTENSION : & str = os:: DLL_EXTENSION ;
1027
1076
1028
- /// Specifies the filename suffix used for executable binaries on this
1029
- /// platform. Example value is ` .exe`.
1077
+ /// Specifies the filename suffix, if any, used for executable binaries on this platform.
1078
+ /// An example value may be: `" .exe"`, or `".efi" `.
1030
1079
///
1031
- /// Some possible values:
1080
+ /// <details><summary>Full list of possible values</summary>
1032
1081
///
1033
- /// - `.exe`
1034
- /// - `.nexe`
1035
- /// - `.pexe`
1036
- /// - `""` (an empty string)
1082
+ /// * `".exe"`
1083
+ /// * `".efi"`
1084
+ /// * `".js"`
1085
+ /// * `".sgxs"`
1086
+ /// * `".elf"`
1087
+ /// * `".wasm"`
1088
+ /// * `""` (an empty string)
1089
+ ///
1090
+ /// </details>
1037
1091
#[ stable( feature = "env" , since = "1.0.0" ) ]
1038
1092
pub const EXE_SUFFIX : & str = os:: EXE_SUFFIX ;
1039
1093
1040
- /// Specifies the file extension, if any, used for executable binaries
1041
- /// on this platform. Example value is `exe`.
1094
+ /// Specifies the file extension, if any, used for executable binaries on this platform.
1095
+ /// An example value may be: `"exe"`, or an empty string (`""`).
1096
+ ///
1097
+ /// <details><summary>Full list of possible values</summary>
1042
1098
///
1043
- /// Some possible values:
1099
+ /// * `"exe"`
1100
+ /// * `"efi"`
1101
+ /// * `"js"`
1102
+ /// * `"sgxs"`
1103
+ /// * `"elf"`
1104
+ /// * `"wasm"`
1105
+ /// * `""` (an empty string)
1044
1106
///
1045
- /// - `exe`
1046
- /// - `""` (an empty string)
1107
+ /// </details>
1047
1108
#[ stable( feature = "env" , since = "1.0.0" ) ]
1048
1109
pub const EXE_EXTENSION : & str = os:: EXE_EXTENSION ;
1049
1110
}
0 commit comments