pub struct PreparedDetections {
pub anchors: Vec<ResolvedAnchor>,
pub records: Vec<DetectionRecord>,
pub warnings: Vec<String>,
}Expand description
Output of prepare_detections.
Fields§
§anchors: Vec<ResolvedAnchor>Anchors ready to inject into the Viterbi pipeline (sorted by first affected GNSS index).
records: Vec<DetectionRecord>Per-detection provenance (applied / resolved / discarded), preserving original input order.
warnings: Vec<String>Free-form warnings collected during filter / resolve.
Trait Implementations§
Source§impl Clone for PreparedDetections
impl Clone for PreparedDetections
Source§fn clone(&self) -> PreparedDetections
fn clone(&self) -> PreparedDetections
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 PreparedDetections
impl Debug for PreparedDetections
Source§impl Default for PreparedDetections
impl Default for PreparedDetections
Source§fn default() -> PreparedDetections
fn default() -> PreparedDetections
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PreparedDetections
impl RefUnwindSafe for PreparedDetections
impl Send for PreparedDetections
impl Sync for PreparedDetections
impl Unpin for PreparedDetections
impl UnsafeUnpin for PreparedDetections
impl UnwindSafe for PreparedDetections
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more