Lines Matching defs:bytes
201 relax this restriction, use the [`bytes`](bytes/index.html) sub-module.)
255 The `bytes` sub-module provides a `Regex` type that can be used to match
641 Match regular expressions on arbitrary bytes.
649 matching invalid UTF-8 bytes.
653 This shows how to find all null-terminated strings in a slice of bytes:
656 # use regex::bytes::Regex;
676 # use regex::bytes::Regex;
685 // the `.*` would match the rest of the bytes.
702 bytes:
714 5. Hexadecimal notation can be used to specify arbitrary bytes instead of
728 pub mod bytes {
729 pub use crate::re_builder::bytes::*;
732 pub use crate::re_set::bytes::*;