pub struct EvidencePacketReviewPriorityItem {
pub rank: u32,
pub path: String,
pub category: String,
pub severity: String,
pub score: u32,
pub kind: String,
pub reason: String,
pub evidence: String,
pub refs: Vec<String>,
}Expand description
Advisory first-read item derived from packet artifacts.
Fields§
§rank: u32§path: String§category: String§severity: String§score: u32§kind: String§reason: String§evidence: String§refs: Vec<String>Trait Implementations§
Source§impl Clone for EvidencePacketReviewPriorityItem
impl Clone for EvidencePacketReviewPriorityItem
Source§fn clone(&self) -> EvidencePacketReviewPriorityItem
fn clone(&self) -> EvidencePacketReviewPriorityItem
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<'de> Deserialize<'de> for EvidencePacketReviewPriorityItem
impl<'de> Deserialize<'de> for EvidencePacketReviewPriorityItem
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 EvidencePacketReviewPriorityItem
Source§impl PartialEq for EvidencePacketReviewPriorityItem
impl PartialEq for EvidencePacketReviewPriorityItem
Source§fn eq(&self, other: &EvidencePacketReviewPriorityItem) -> bool
fn eq(&self, other: &EvidencePacketReviewPriorityItem) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EvidencePacketReviewPriorityItem
Auto Trait Implementations§
impl Freeze for EvidencePacketReviewPriorityItem
impl RefUnwindSafe for EvidencePacketReviewPriorityItem
impl Send for EvidencePacketReviewPriorityItem
impl Sync for EvidencePacketReviewPriorityItem
impl Unpin for EvidencePacketReviewPriorityItem
impl UnsafeUnpin for EvidencePacketReviewPriorityItem
impl UnwindSafe for EvidencePacketReviewPriorityItem
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