pub struct GrepMatch {
pub file: String,
pub line_number: usize,
pub line: String,
}Expand description
A single grep match.
Fields§
§file: String§line_number: usize§line: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for GrepMatch
impl RefUnwindSafe for GrepMatch
impl Send for GrepMatch
impl Sync for GrepMatch
impl Unpin for GrepMatch
impl UnsafeUnpin for GrepMatch
impl UnwindSafe for GrepMatch
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