Trait UtfExt

Source
pub trait UtfExt {
    // Required methods
    fn is_ws(&self) -> bool;
    fn is_inline_ws(&self) -> bool;
    fn is_line_ending(&self) -> bool;
    fn is_hex(&self) -> bool;
    fn is_digits(&self) -> bool;
    fn is_xid_start(&self) -> bool;
    fn is_xid_continue(&self) -> bool;
}

Required Methods§

Source

fn is_ws(&self) -> bool

Source

fn is_inline_ws(&self) -> bool

Source

fn is_line_ending(&self) -> bool

Source

fn is_hex(&self) -> bool

Source

fn is_digits(&self) -> bool

Source

fn is_xid_start(&self) -> bool

Source

fn is_xid_continue(&self) -> bool

Implementations on Foreign Types§

Source§

impl<'a> UtfExt for &'a str

Implementors§