pub enum Evidence {
TestResult {
test_name: String,
passed: bool,
output: String,
},
PacketCapture {
description: String,
packets: Vec<u8>,
},
CodeReference {
file: String,
line: usize,
snippet: String,
},
EndpointTest {
endpoint: String,
result: String,
},
}
Expand description
Evidence supporting compliance validation
Variants§
TestResult
Test result
Fields
PacketCapture
Packet capture showing behavior
Fields
CodeReference
Code reference
Fields
EndpointTest
External endpoint test
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Evidence
impl RefUnwindSafe for Evidence
impl Send for Evidence
impl Sync for Evidence
impl Unpin for Evidence
impl UnwindSafe for Evidence
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