pub struct RadarReport {
pub hints: Vec<RadarHint>,
pub stale_index: bool,
pub stale_chunk_ids: Vec<String>,
}Expand description
Radar retrieval result.
Fields§
§hints: Vec<RadarHint>Ranked hints after filters and stale-span removal.
stale_index: boolWhether any matching chunk had a stale source span.
stale_chunk_ids: Vec<String>Matching stale chunk ids dropped from the hint list.
Trait Implementations§
Source§impl Clone for RadarReport
impl Clone for RadarReport
Source§fn clone(&self) -> RadarReport
fn clone(&self) -> RadarReport
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 RadarReport
impl Debug for RadarReport
Source§impl PartialEq for RadarReport
impl PartialEq for RadarReport
Source§fn eq(&self, other: &RadarReport) -> bool
fn eq(&self, other: &RadarReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RadarReport
Auto Trait Implementations§
impl Freeze for RadarReport
impl RefUnwindSafe for RadarReport
impl Send for RadarReport
impl Sync for RadarReport
impl Unpin for RadarReport
impl UnsafeUnpin for RadarReport
impl UnwindSafe for RadarReport
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