pub struct ParallelDfaBindings {
pub transitions: &'static str,
pub haystack: &'static str,
pub lane_prefix: &'static str,
pub lane_next: &'static str,
pub out_state_by_lane: &'static str,
pub file_start: &'static str,
pub file_end: &'static str,
pub transition_base: &'static str,
pub initial_state: &'static str,
pub state_count: &'static str,
pub subgroup_width: u32,
}Expand description
Binding names and limits for subgroup DFA prefix composition.
Fields§
§transitions: &'static strDense transition table buffer.
haystack: &'static strHaystack byte buffer.
lane_prefix: &'static strScratch table containing the current per-lane transition function.
lane_next: &'static strScratch table used for the next prefix-composition stage.
out_state_by_lane: &'static strOutput buffer receiving one state per active lane.
file_start: &'static strVariable naming the first byte in the chunk.
file_end: &'static strVariable naming one-past-last byte in the file/chunk.
transition_base: &'static strVariable naming the rule transition-table base.
initial_state: &'static strVariable naming the initial DFA state.
state_count: &'static strVariable naming the DFA state count.
subgroup_width: u32Subgroup width to compose. Must be a power of two for this fragment.
Trait Implementations§
Source§impl Clone for ParallelDfaBindings
impl Clone for ParallelDfaBindings
Source§fn clone(&self) -> ParallelDfaBindings
fn clone(&self) -> ParallelDfaBindings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParallelDfaBindings
impl Debug for ParallelDfaBindings
Source§impl Default for ParallelDfaBindings
impl Default for ParallelDfaBindings
impl Eq for ParallelDfaBindings
Source§impl PartialEq for ParallelDfaBindings
impl PartialEq for ParallelDfaBindings
Source§fn eq(&self, other: &ParallelDfaBindings) -> bool
fn eq(&self, other: &ParallelDfaBindings) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParallelDfaBindings
Auto Trait Implementations§
impl Freeze for ParallelDfaBindings
impl RefUnwindSafe for ParallelDfaBindings
impl Send for ParallelDfaBindings
impl Sync for ParallelDfaBindings
impl Unpin for ParallelDfaBindings
impl UnsafeUnpin for ParallelDfaBindings
impl UnwindSafe for ParallelDfaBindings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.