pub trait InfraScalarValue {
// Required methods
fn is_ascii_tab_newline(self) -> bool;
fn is_c0_control(self) -> bool;
fn is_c0_control_space(self) -> bool;
fn is_noncharacter(self) -> bool;
}
Expand description
Methods from the WHATWG Infra Standard for Unicode codepoints
Required Methods§
Sourcefn is_ascii_tab_newline(self) -> bool
fn is_ascii_tab_newline(self) -> bool
See the documentation for is_ascii_tab_newline()
Sourcefn is_c0_control(self) -> bool
fn is_c0_control(self) -> bool
See the documentation for is_c0_control()
Sourcefn is_c0_control_space(self) -> bool
fn is_c0_control_space(self) -> bool
See the documentation for is_c0_control_space()
Sourcefn is_noncharacter(self) -> bool
fn is_noncharacter(self) -> bool
See the documentation for is_noncharacter()