pub struct FindResult {
pub matches: Vec<BlockId>,
pub total_searched: usize,
}Expand description
Result of a find operation.
Fields§
§matches: Vec<BlockId>Matching block IDs.
total_searched: usizeTotal blocks searched.
Trait Implementations§
Source§impl Clone for FindResult
impl Clone for FindResult
Source§fn clone(&self) -> FindResult
fn clone(&self) -> FindResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FindResult
impl RefUnwindSafe for FindResult
impl Send for FindResult
impl Sync for FindResult
impl Unpin 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