pub struct FilterOutput {
pub kept_upstream_ids: Vec<Uuid>,
pub reason: String,
pub per_candidate_reasons: Vec<PerCandidateReason>,
}Expand description
Filter plugin output containing upstream selection results and per-candidate reasons.
Fields§
§kept_upstream_ids: Vec<Uuid>Upstream IDs that passed the filter.
reason: StringHuman-readable reason for the filtering decision.
per_candidate_reasons: Vec<PerCandidateReason>Per-candidate filtering reasons.
Trait Implementations§
Source§impl Clone for FilterOutput
impl Clone for FilterOutput
Source§fn clone(&self) -> FilterOutput
fn clone(&self) -> FilterOutput
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 FilterOutput
impl Debug for FilterOutput
impl Eq for FilterOutput
Source§impl PartialEq for FilterOutput
impl PartialEq for FilterOutput
Source§fn eq(&self, other: &FilterOutput) -> bool
fn eq(&self, other: &FilterOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FilterOutput
Auto Trait Implementations§
impl Freeze for FilterOutput
impl RefUnwindSafe for FilterOutput
impl Send for FilterOutput
impl Sync for FilterOutput
impl Unpin for FilterOutput
impl UnsafeUnpin for FilterOutput
impl UnwindSafe for FilterOutput
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