[][src]Struct jetscii::Bytes

pub struct Bytes<F> where
    F: Fn(u8) -> bool
{ /* fields omitted */ }

Searches a slice for a set of bytes. Up to 16 bytes may be used.

Methods

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

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

Manual constructor; prefer using bytes! instead.

Provide an array of 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 bytes as in the array.

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

Searches the slice for the first matching byte in the set.

Auto Trait Implementations

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

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

Blanket Implementations

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

impl<T> From<T> for 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]