pub enum InterventionEvidence {
None,
Preview {
max_elements: u64,
},
Summary,
}Expand description
Bounded before/after evidence. Both sides are charged to the shared capture ledger. Routing evidence includes selected IDs and coefficients, not a second unmodified model forward pass.
Variants§
None
Only the attributed application outcome is recorded.
Preview
Bounded row-major values per side/route field.
Summary
Finite statistics of activation values on each side.
Trait Implementations§
Source§impl Clone for InterventionEvidence
impl Clone for InterventionEvidence
Source§fn clone(&self) -> InterventionEvidence
fn clone(&self) -> InterventionEvidence
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 InterventionEvidence
impl Debug for InterventionEvidence
Source§impl<'de> Deserialize<'de> for InterventionEvidence
impl<'de> Deserialize<'de> for InterventionEvidence
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for InterventionEvidence
Source§impl PartialEq for InterventionEvidence
impl PartialEq for InterventionEvidence
Source§impl Serialize for InterventionEvidence
impl Serialize for InterventionEvidence
impl StructuralPartialEq for InterventionEvidence
Auto Trait Implementations§
impl Freeze for InterventionEvidence
impl RefUnwindSafe for InterventionEvidence
impl Send for InterventionEvidence
impl Sync for InterventionEvidence
impl Unpin for InterventionEvidence
impl UnsafeUnpin for InterventionEvidence
impl UnwindSafe for InterventionEvidence
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