pub struct BatchRuleRejection {
pub rule_idx: Option<u32>,
pub reason: String,
}Expand description
One rule rejected from a megakernel batch while other rules still ran.
Fields§
§rule_idx: Option<u32>Caller-supplied rule index when present.
reason: StringHuman-readable rejection reason.
Trait Implementations§
Source§impl Clone for BatchRuleRejection
impl Clone for BatchRuleRejection
Source§fn clone(&self) -> BatchRuleRejection
fn clone(&self) -> BatchRuleRejection
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 BatchRuleRejection
impl Debug for BatchRuleRejection
impl Eq for BatchRuleRejection
Source§impl PartialEq for BatchRuleRejection
impl PartialEq for BatchRuleRejection
Source§fn eq(&self, other: &BatchRuleRejection) -> bool
fn eq(&self, other: &BatchRuleRejection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchRuleRejection
Auto Trait Implementations§
impl Freeze for BatchRuleRejection
impl RefUnwindSafe for BatchRuleRejection
impl Send for BatchRuleRejection
impl Sync for BatchRuleRejection
impl Unpin for BatchRuleRejection
impl UnsafeUnpin for BatchRuleRejection
impl UnwindSafe for BatchRuleRejection
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.