#[non_exhaustive]pub enum Anchored {
No,
Yes,
}Expand description
The type of anchored search to perform.
If an Aho-Corasick searcher does not support the anchored mode selected, then the search will return an error or panic, depending on whether a fallible or an infallible routine was called.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
No
Run an unanchored search. This means a match may occur anywhere at or after the start position of the search up until the end position of the search.
Yes
Run an anchored search. This means that a match must begin at the start position of the search and end before the end position of the search.
Implementations§
Trait Implementations§
impl Copy for Anchored
impl Eq for Anchored
impl StructuralPartialEq for Anchored
Auto Trait Implementations§
impl Freeze for Anchored
impl RefUnwindSafe for Anchored
impl Send for Anchored
impl Sync for Anchored
impl Unpin for Anchored
impl UnwindSafe for Anchored
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
No: 0 bytesYes: 0 bytes