[][src]Trait boyer_moore_magiclen::byte::BMByteSearchable

pub trait BMByteSearchable {
    fn len(&self) -> usize;
fn value_at(&self, index: usize) -> u8;
fn iter(&self) -> Iter<u8>; }

Required methods

fn len(&self) -> usize

fn value_at(&self, index: usize) -> u8

fn iter(&self) -> Iter<u8>

Loading content...

Implementations on Foreign Types

impl BMByteSearchable for String[src]

impl BMByteSearchable for dyn Deref<Target = [u8]>[src]

impl BMByteSearchable for Vec<u8>[src]

Loading content...

Implementors

impl<'_> BMByteSearchable for &'_ str[src]

impl<'_, T: BMByteSearchable> BMByteSearchable for &'_ T[src]

Loading content...