[][src]Struct jetscii::AsciiChars

pub struct AsciiChars<F>(_)
where
    F: Fn(u8) -> bool
;

Searches a string for a set of ASCII characters. Up to 16 characters may be used.

Methods

impl<F> AsciiChars<F> where
    F: Fn(u8) -> bool
[src]

pub fn new(chars: [u8; 16], len: i32, fallback: F) -> Self[src]

Manual constructor; prefer using ascii_chars! instead.

Provide an array of ASCII bytes to search for, the number of valid bytes provided, and a closure to use when the SIMD intrinsics are not available. The closure must search for the same characters as in the array.

Panics

  • If you provide a non-ASCII byte.

pub fn find(&self, haystack: &str) -> Option<usize>[src]

Searches the string for the first matching ASCII byte in the set.

Auto Trait Implementations

impl<F> Send for AsciiChars<F> where
    F: Send

impl<F> Sync for AsciiChars<F> where
    F: Sync

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]