pub struct UnicodeVersion {
pub major: u32,
pub minor: u32,
pub micro: u32,
// some fields omitted
}
Represents a Unicode Version.
See also: http://www.unicode.org/versions/
major: u32 Major version.
minor: u32 Minor version.
micro: u32 Micro (or Update) version.
impl Debug for UnicodeVersion
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl Clone for UnicodeVersion
[src]
fn clone(&self) -> UnicodeVersion
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Eq for UnicodeVersion
[src]
impl PartialOrd<UnicodeVersion> for UnicodeVersion
[src]
fn partial_cmp(&self, __arg_0: &UnicodeVersion) -> Option<Ordering>
[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &UnicodeVersion) -> bool
[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &UnicodeVersion) -> bool
[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &UnicodeVersion) -> bool
[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &UnicodeVersion) -> bool
[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Copy for UnicodeVersion
[src]
impl Ord for UnicodeVersion
[src]
fn cmp(&self, __arg_0: &UnicodeVersion) -> Ordering
[src]
This method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl PartialEq<UnicodeVersion> for UnicodeVersion
[src]
fn eq(&self, __arg_0: &UnicodeVersion) -> bool
[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &UnicodeVersion) -> bool
[src]
This method tests for !=.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/char/struct.UnicodeVersion.html