pub struct Request<'a, S: StrDrive> {
pub string: S,
pub start: usize,
pub end: usize,
pub pattern_codes: &'a [u32],
pub match_all: bool,
pub must_advance: bool,
}
Fields§
§string: S
§start: usize
§end: usize
§pattern_codes: &'a [u32]
§match_all: bool
§must_advance: bool
Implementations§
Trait Implementations§
impl<'a, S: Copy + StrDrive> Copy for Request<'a, S>
Auto Trait Implementations§
impl<'a, S> Freeze for Request<'a, S>where
S: Freeze,
impl<'a, S> RefUnwindSafe for Request<'a, S>where
S: RefUnwindSafe,
impl<'a, S> Send for Request<'a, S>where
S: Send,
impl<'a, S> Sync for Request<'a, S>where
S: Sync,
impl<'a, S> Unpin for Request<'a, S>where
S: Unpin,
impl<'a, S> UnwindSafe for Request<'a, S>where
S: UnwindSafe,
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