#[non_exhaustive]pub struct LiteralMatch {
pub pattern_id: u32,
pub start: u32,
pub end: u32,
}Expand description
A byte-range match emitted by vyre scanning engines.
Deprecated: callers should migrate to
ByteRange. The two types share layout and the From bridges are
zero-cost.
Background: pattern_id is a matching-dialect concept. The
neutral name on the new type is tag; the producer decides what
it means (pattern id, encoding id, AST kind, source index, …).
CRITIQUE_VISION_ALIGNMENT_2026-04-23 V1.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.pattern_id: u32Stable pattern identifier that produced the match.
start: u32Inclusive byte start offset.
end: u32Exclusive byte end offset.
Implementations§
Source§impl Match
impl Match
Sourcepub const fn new(pattern_id: u32, start: u32, end: u32) -> Match
pub const fn new(pattern_id: u32, start: u32, end: u32) -> Match
Construct a match from its pattern id and byte range.
This constructor is a const fn so that engines can emit match
literals at compile time. The byte range is half-open [start, end)
to match Rust slicing conventions.
§Examples
use vyre::Match;
let m = Match::new(1, 10, 20);
assert_eq!(m.pattern_id, 1);
assert_eq!(m.start, 10);
assert_eq!(m.end, 20);Trait Implementations§
impl Copy for Match
impl Eq for Match
Source§impl Ord for Match
impl Ord for Match
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Match
impl PartialOrd for Match
impl StructuralPartialEq for Match
Auto Trait Implementations§
impl Freeze for Match
impl RefUnwindSafe for Match
impl Send for Match
impl Sync for Match
impl Unpin for Match
impl UnsafeUnpin 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<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.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more