pub enum RegexAcceleratorClass {
RxpLike,
Dpu,
Fpga,
Software,
}Expand description
Regex accelerator class advertised by a backend.
Variants§
RxpLike
RXP-like hardware regex acceleration.
Dpu
DPU-attached regex acceleration.
Fpga
FPGA-style regex offload.
Software
Software reference or fallback path.
Implementations§
Trait Implementations§
Source§impl Clone for RegexAcceleratorClass
impl Clone for RegexAcceleratorClass
Source§fn clone(&self) -> RegexAcceleratorClass
fn clone(&self) -> RegexAcceleratorClass
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 RegexAcceleratorClass
Source§impl Debug for RegexAcceleratorClass
impl Debug for RegexAcceleratorClass
impl Eq for RegexAcceleratorClass
Source§impl Hash for RegexAcceleratorClass
impl Hash for RegexAcceleratorClass
Source§impl PartialEq for RegexAcceleratorClass
impl PartialEq for RegexAcceleratorClass
Source§fn eq(&self, other: &RegexAcceleratorClass) -> bool
fn eq(&self, other: &RegexAcceleratorClass) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RegexAcceleratorClass
Auto Trait Implementations§
impl Freeze for RegexAcceleratorClass
impl RefUnwindSafe for RegexAcceleratorClass
impl Send for RegexAcceleratorClass
impl Sync for RegexAcceleratorClass
impl Unpin for RegexAcceleratorClass
impl UnsafeUnpin for RegexAcceleratorClass
impl UnwindSafe for RegexAcceleratorClass
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.