pub struct FindResult {
pub file_name: String,
pub lines: Vec<(u32, String)>,
pub print: bool,
}Fields§
§file_name: String§lines: Vec<(u32, String)>§print: boolTrait Implementations§
Source§impl Default for FindResult
impl Default for FindResult
Source§fn default() -> FindResult
fn default() -> FindResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FindResult
impl RefUnwindSafe for FindResult
impl Send for FindResult
impl Sync for FindResult
impl Unpin for FindResult
impl UnsafeUnpin for FindResult
impl UnwindSafe for FindResult
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