mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-16 09:53:50 +01:00
9 lines
204 B
Rust
9 lines
204 B
Rust
|
|
/// Internal surrogate for `Match`, before a Hint has been associated.
|
||
|
|
#[derive(Debug)]
|
||
|
|
pub(super) struct RawMatch<'a> {
|
||
|
|
pub x: i32,
|
||
|
|
pub y: i32,
|
||
|
|
pub pattern: &'a str,
|
||
|
|
pub text: &'a str,
|
||
|
|
}
|