pub trait Element: Debug {
Show 17 methods
// Required methods
fn to_char(self) -> char;
fn is_ascii_space(&self) -> bool;
fn is_ascii_multi_space(&self) -> bool;
fn is_ascii_whitespace(&self) -> bool;
fn is_ascii(&self) -> bool;
fn is_ascii_alpha_uppercase(&self) -> bool;
fn is_ascii_alpha_lowercase(&self) -> bool;
fn is_ascii_alpha(&self) -> bool;
fn is_ascii_digit(&self) -> bool;
fn is_ascii_digit_zero(&self) -> bool;
fn is_ascii_digit_non_zero(&self) -> bool;
fn is_ascii_alpha_digit(&self) -> bool;
fn is_ascii_hex_digit(&self) -> bool;
fn is_ascii_oct_digit(&self) -> bool;
fn is_ascii_punctuation(&self) -> bool;
fn is_ascii_graphic(&self) -> bool;
fn is_ascii_control(&self) -> bool;
}
Expand description
A Element.
要素。
Required Methods§
Sourcefn is_ascii_space(&self) -> bool
fn is_ascii_space(&self) -> bool
空白かどうか。
Sourcefn is_ascii_multi_space(&self) -> bool
fn is_ascii_multi_space(&self) -> bool
改行を含む空白かどうか。
Sourcefn is_ascii_whitespace(&self) -> bool
fn is_ascii_whitespace(&self) -> bool
空白かどうか。
Sourcefn is_ascii_alpha_uppercase(&self) -> bool
fn is_ascii_alpha_uppercase(&self) -> bool
アルファベットの大文字かどうか。
Sourcefn is_ascii_alpha_lowercase(&self) -> bool
fn is_ascii_alpha_lowercase(&self) -> bool
アルファベットの小文字かどうか。
Sourcefn is_ascii_alpha(&self) -> bool
fn is_ascii_alpha(&self) -> bool
アルファベットかどうか。
Sourcefn is_ascii_digit(&self) -> bool
fn is_ascii_digit(&self) -> bool
数字かどうか。
Sourcefn is_ascii_digit_zero(&self) -> bool
fn is_ascii_digit_zero(&self) -> bool
数字のゼロかどうか。
Sourcefn is_ascii_digit_non_zero(&self) -> bool
fn is_ascii_digit_non_zero(&self) -> bool
数字の非ゼロかどうか。
Sourcefn is_ascii_alpha_digit(&self) -> bool
fn is_ascii_alpha_digit(&self) -> bool
英数文字かどうか。