Struct aho_corasick::packed::pattern::Pattern

source ·
pub(crate) struct Pattern<'a>(&'a [u8]);
Expand description

A pattern that is used in packed searching.

Tuple Fields§

§0: &'a [u8]

Implementations§

source§

impl<'p> Pattern<'p>

source

pub(crate) fn len(&self) -> usize

Returns the length of this pattern, in bytes.

source

pub(crate) fn bytes(&self) -> &[u8]

Returns the bytes of this pattern.

source

pub(crate) fn low_nybbles(&self, len: usize) -> Box<[u8]>

Returns the first len low nybbles from this pattern. If this pattern is shorter than len, then this panics.

source

pub(crate) fn is_prefix(&self, bytes: &[u8]) -> bool

Returns true if this pattern is a prefix of the given bytes.

source

pub(crate) unsafe fn is_prefix_raw( &self, start: *const u8, end: *const u8, ) -> bool

Returns true if this pattern is a prefix of the haystack given by the raw start and end pointers.

§Safety
  • It must be the case that start < end and that the distance between them is at least equal to V::BYTES. That is, it must always be valid to do at least an unaligned load of V at start.
  • Both start and end must be valid for reads.
  • Both start and end must point to an initialized value.
  • Both start and end must point to the same allocated object and must either be in bounds or at most one byte past the end of the allocated object.
  • Both start and end must be derived from a pointer to the same object.
  • The distance between start and end must not overflow isize.
  • The distance being in bounds must not rely on “wrapping around” the address space.

Trait Implementations§

source§

impl<'a> Clone for Pattern<'a>

source§

fn clone(&self) -> Pattern<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for Pattern<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Pattern<'a>

§

impl<'a> RefUnwindSafe for Pattern<'a>

§

impl<'a> Send for Pattern<'a>

§

impl<'a> Sync for Pattern<'a>

§

impl<'a> Unpin for Pattern<'a>

§

impl<'a> UnwindSafe for Pattern<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.