Files
alloc
collections
prelude
core
char
fmt
future
hash
iter
adapters
traits
mem
num
dec2flt
flt2dec
ops
prelude
ptr
slice
stdsimd
crates
core_arch
src
aarch64
acle
arm
mips
nvptx
powerpc
powerpc64
wasm32
x86
x86_64
str
sync
task
unicode
proc_macro
std
collections
ffi
io
net
os
prelude
stdsimd
sync
sys
unix
ext
process
windows
sys_common
thread
test
>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/// Represents a Unicode Version. /// /// See also: <http://www.unicode.org/versions/> #[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)] #[unstable(feature = "unicode_version", issue = "49726")] pub struct UnicodeVersion { /// Major version. pub major: u32, /// Minor version. pub minor: u32, /// Micro (or Update) version. pub micro: u32, // Private field to keep struct expandable. pub(crate) _priv: (), }