pub struct Match {
pub bytes: Vec<u8>,
pub span: MatchSpan,
}
Expand description
Full information of a query match – its span and the input bytes in that span.
Fields§
§bytes: Vec<u8>
JSON contents of the match.
span: MatchSpan
Span of the match.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Match
impl Send for Match
impl Sync for Match
impl Unpin for Match
impl UnwindSafe for Match
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