#[non_exhaustive]pub enum NativeFindingLabelKind {
Primary,
Secondary,
}Expand description
Producer-neutral role of one source location attached to a native finding.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Primary
Location primarily responsible for the finding.
Secondary
Related location that adds context.
Trait Implementations§
Source§impl Clone for NativeFindingLabelKind
impl Clone for NativeFindingLabelKind
Source§fn clone(&self) -> NativeFindingLabelKind
fn clone(&self) -> NativeFindingLabelKind
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 moreimpl Copy for NativeFindingLabelKind
Source§impl Debug for NativeFindingLabelKind
impl Debug for NativeFindingLabelKind
impl Eq for NativeFindingLabelKind
Source§impl PartialEq for NativeFindingLabelKind
impl PartialEq for NativeFindingLabelKind
impl StructuralPartialEq for NativeFindingLabelKind
Auto Trait Implementations§
impl Freeze for NativeFindingLabelKind
impl RefUnwindSafe for NativeFindingLabelKind
impl Send for NativeFindingLabelKind
impl Sync for NativeFindingLabelKind
impl Unpin for NativeFindingLabelKind
impl UnsafeUnpin for NativeFindingLabelKind
impl UnwindSafe for NativeFindingLabelKind
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