pub struct WorklistItem<'a> {Show 22 fields
pub id: &'a str,
pub kind: &'a str,
pub exception_kind: Option<&'a str>,
pub family: Option<&'a str>,
pub owner: Option<&'a str>,
pub classification: Option<&'a str>,
pub reason: Option<&'a str>,
pub created: Option<&'a str>,
pub review_after: Option<&'a str>,
pub expires: Option<&'a str>,
pub evidence_count: Option<usize>,
pub risk: &'a str,
pub difficulty: &'a str,
pub status: &'a str,
pub allow_id: Option<&'a str>,
pub finding_index: Option<usize>,
pub path: Option<&'a str>,
pub evidence_reference: Option<EvidenceReference<'a>>,
pub source_package: Option<&'a str>,
pub message: &'a str,
pub suggested_actions: &'a [String],
pub proof_commands: &'a [String],
}Fields§
§id: &'a str§kind: &'a str§exception_kind: Option<&'a str>§family: Option<&'a str>§owner: Option<&'a str>§classification: Option<&'a str>§reason: Option<&'a str>§created: Option<&'a str>§review_after: Option<&'a str>§expires: Option<&'a str>§evidence_count: Option<usize>§risk: &'a str§difficulty: &'a str§status: &'a str§allow_id: Option<&'a str>§finding_index: Option<usize>§path: Option<&'a str>§evidence_reference: Option<EvidenceReference<'a>>§source_package: Option<&'a str>§message: &'a str§suggested_actions: &'a [String]§proof_commands: &'a [String]Trait Implementations§
Source§impl<'a> Clone for WorklistItem<'a>
impl<'a> Clone for WorklistItem<'a>
Source§fn clone(&self) -> WorklistItem<'a>
fn clone(&self) -> WorklistItem<'a>
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<'a> Debug for WorklistItem<'a>
impl<'a> Debug for WorklistItem<'a>
impl<'a> Copy for WorklistItem<'a>
Auto Trait Implementations§
impl<'a> Freeze for WorklistItem<'a>
impl<'a> RefUnwindSafe for WorklistItem<'a>
impl<'a> Send for WorklistItem<'a>
impl<'a> Sync for WorklistItem<'a>
impl<'a> Unpin for WorklistItem<'a>
impl<'a> UnsafeUnpin for WorklistItem<'a>
impl<'a> UnwindSafe for WorklistItem<'a>
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