Files
ansi_term
atty
bitflags
clap
enum_primitive
evmc_client
evmc_sys
evmc_vm
hex
libc
libloading
num
num_bigint
num_complex
num_integer
num_iter
num_rational
num_traits
rust_ssvm
strsim
textwrap
unicode_width
vec_map
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
pub trait _StrExt {
    fn _is_char_boundary(&self, index: usize) -> bool;
}

impl _StrExt for str {
    #[inline]
    fn _is_char_boundary(&self, index: usize) -> bool {
        if index == self.len() {
            return true;
        }
        match self.as_bytes().get(index) {
            None => false,
            Some(&b) => b < 128 || b >= 192,
        }
    }
}