pub struct VerificationTarget {
pub id: String,
pub language: String,
pub kind: TargetKind,
pub path: Utf8PathBuf,
pub symbol: Option<String>,
pub signature: Option<String>,
pub line_range: Option<LineRange>,
pub description: String,
pub risk: RiskLevel,
}Fields§
§id: String§language: String§kind: TargetKind§path: Utf8PathBuf§symbol: Option<String>§signature: Option<String>§line_range: Option<LineRange>§description: String§risk: RiskLevelTrait Implementations§
Source§impl Clone for VerificationTarget
impl Clone for VerificationTarget
Source§fn clone(&self) -> VerificationTarget
fn clone(&self) -> VerificationTarget
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 VerificationTarget
impl Debug for VerificationTarget
Source§impl<'de> Deserialize<'de> for VerificationTarget
impl<'de> Deserialize<'de> for VerificationTarget
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
Source§impl PartialEq for VerificationTarget
impl PartialEq for VerificationTarget
Source§fn eq(&self, other: &VerificationTarget) -> bool
fn eq(&self, other: &VerificationTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VerificationTarget
impl Serialize for VerificationTarget
impl Eq for VerificationTarget
impl StructuralPartialEq for VerificationTarget
Auto Trait Implementations§
impl Freeze for VerificationTarget
impl RefUnwindSafe for VerificationTarget
impl Send for VerificationTarget
impl Sync for VerificationTarget
impl Unpin for VerificationTarget
impl UnsafeUnpin for VerificationTarget
impl UnwindSafe for VerificationTarget
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