pub enum FilterDecision {
Annotate,
Skip(String),
Trivial(String),
}Expand description
Decision from pre-LLM filtering.
Variants§
Annotate
Proceed with full LLM annotation.
Skip(String)
Skip annotation entirely (lockfile-only, merge commits, etc.)
Trivial(String)
Produce a minimal local annotation without calling the LLM.
Trait Implementations§
Source§impl Debug for FilterDecision
impl Debug for FilterDecision
Source§impl PartialEq for FilterDecision
impl PartialEq for FilterDecision
impl Eq for FilterDecision
impl StructuralPartialEq for FilterDecision
Auto Trait Implementations§
impl Freeze for FilterDecision
impl RefUnwindSafe for FilterDecision
impl Send for FilterDecision
impl Sync for FilterDecision
impl Unpin for FilterDecision
impl UnwindSafe for FilterDecision
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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