pub struct LookupTable(/* private fields */);Expand description
See oneof
Trait Implementations§
Source§impl Clone for LookupTable
impl Clone for LookupTable
Source§fn clone(&self) -> LookupTable
fn clone(&self) -> LookupTable
Returns a copy of the value. Read more
1.0.0 · 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 LookupTable
impl Debug for LookupTable
Source§impl Pattern for LookupTable
impl Pattern for LookupTable
Source§fn eval<'i>(&self, input: &[u8]) -> Option<usize>
fn eval<'i>(&self, input: &[u8]) -> Option<usize>
Evaluates the pattern against a slice of bytes.
If the pattern matches, the length of matching bytes should be returned.
Otherwise,
None should be returned. Read moreSource§fn and<P>(self, other: P) -> Composition<Self, P>
fn and<P>(self, other: P) -> Composition<Self, P>
impl Copy for LookupTable
Auto Trait Implementations§
impl Freeze for LookupTable
impl RefUnwindSafe for LookupTable
impl Send for LookupTable
impl Sync for LookupTable
impl Unpin for LookupTable
impl UnwindSafe for LookupTable
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