pub struct CorrelationVerification {
pub group: String,
pub negative: bool,
pub fired: bool,
}Expand description
Isolated replay result for one positive or negative group.
Fields§
§group: StringGroup identifier.
negative: boolWhether this was a negative group.
fired: boolWhether the target correlation fired.
Trait Implementations§
Source§impl Clone for CorrelationVerification
impl Clone for CorrelationVerification
Source§fn clone(&self) -> CorrelationVerification
fn clone(&self) -> CorrelationVerification
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 CorrelationVerification
impl Debug for CorrelationVerification
Auto Trait Implementations§
impl Freeze for CorrelationVerification
impl RefUnwindSafe for CorrelationVerification
impl Send for CorrelationVerification
impl Sync for CorrelationVerification
impl Unpin for CorrelationVerification
impl UnsafeUnpin for CorrelationVerification
impl UnwindSafe for CorrelationVerification
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