pub enum RegexAcceleratorStreamMode {
Unavailable,
Block,
Streaming,
StatefulStreaming,
}Expand description
Regex stream mode supported by an accelerator.
Variants§
No accelerator stream mode is available.
Block
Independent block scans.
Streaming
Stateless streaming over segmented input.
StatefulStreaming
Stateful streaming that preserves cross-chunk automata state.
Implementations§
Trait Implementations§
Source§impl Clone for RegexAcceleratorStreamMode
impl Clone for RegexAcceleratorStreamMode
Source§fn clone(&self) -> RegexAcceleratorStreamMode
fn clone(&self) -> RegexAcceleratorStreamMode
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 moreimpl Copy for RegexAcceleratorStreamMode
Source§impl Debug for RegexAcceleratorStreamMode
impl Debug for RegexAcceleratorStreamMode
impl Eq for RegexAcceleratorStreamMode
Source§impl Hash for RegexAcceleratorStreamMode
impl Hash for RegexAcceleratorStreamMode
Source§impl PartialEq for RegexAcceleratorStreamMode
impl PartialEq for RegexAcceleratorStreamMode
Source§fn eq(&self, other: &RegexAcceleratorStreamMode) -> bool
fn eq(&self, other: &RegexAcceleratorStreamMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RegexAcceleratorStreamMode
Auto Trait Implementations§
impl Freeze for RegexAcceleratorStreamMode
impl RefUnwindSafe for RegexAcceleratorStreamMode
impl Send for RegexAcceleratorStreamMode
impl Sync for RegexAcceleratorStreamMode
impl Unpin for RegexAcceleratorStreamMode
impl UnsafeUnpin for RegexAcceleratorStreamMode
impl UnwindSafe for RegexAcceleratorStreamMode
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.