mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-13 00:20:08 +01:00
8 lines
204 B
Rust
8 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,
|
|
}
|