Returns whether the string starts with a byte slice.
impl ByteStr { fn starts_with<A>(&self, arg: A) -> bool where A: AsRef<[u8]>, }
The byte slice to be checked.