pub struct FindGrepResult {
pub matches: Vec<FindMatch>,
pub truncated: bool,
}Expand description
Bounded grep result.
Fields§
§matches: Vec<FindMatch>Matches retained within the requested bound.
truncated: boolTrue when more matches existed after matches reached max.
Trait Implementations§
Source§impl Clone for FindGrepResult
impl Clone for FindGrepResult
Source§fn clone(&self) -> FindGrepResult
fn clone(&self) -> FindGrepResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FindGrepResult
impl Debug for FindGrepResult
impl Eq for FindGrepResult
Source§impl PartialEq for FindGrepResult
impl PartialEq for FindGrepResult
impl StructuralPartialEq for FindGrepResult
Auto Trait Implementations§
impl Freeze for FindGrepResult
impl RefUnwindSafe for FindGrepResult
impl Send for FindGrepResult
impl Sync for FindGrepResult
impl Unpin for FindGrepResult
impl UnsafeUnpin for FindGrepResult
impl UnwindSafe for FindGrepResult
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