pub struct GeneratedSecurityRelationAnalyzerSpec<'a> {
pub analyzer_id: &'a str,
pub family: SecurityRelationQueryFamily,
pub rule_id: &'a str,
pub backend_id: &'a str,
pub evidence_digest: &'a str,
pub precision_contract: PrecisionContract,
pub baseline_id: &'a str,
}Expand description
Static analyzer identity and finding metadata supplied by the caller.
Fields§
§analyzer_id: &'a strGenerated analyzer id.
family: SecurityRelationQueryFamilyRelation query family.
rule_id: &'a strUser-facing rule id used to construct finding ids.
backend_id: &'a strBackend or oracle id that produced the relation result.
evidence_digest: &'a strEvidence digest or replay id for the generated analyzer run.
precision_contract: PrecisionContractConsumer precision contract for finding proof bundles.
baseline_id: &'a strBaseline id, such as external-ifds or vyre-security-current.
Trait Implementations§
Source§impl<'a> Clone for GeneratedSecurityRelationAnalyzerSpec<'a>
impl<'a> Clone for GeneratedSecurityRelationAnalyzerSpec<'a>
Source§fn clone(&self) -> GeneratedSecurityRelationAnalyzerSpec<'a>
fn clone(&self) -> GeneratedSecurityRelationAnalyzerSpec<'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 moreimpl<'a> Copy for GeneratedSecurityRelationAnalyzerSpec<'a>
Auto Trait Implementations§
impl<'a> Freeze for GeneratedSecurityRelationAnalyzerSpec<'a>
impl<'a> RefUnwindSafe for GeneratedSecurityRelationAnalyzerSpec<'a>
impl<'a> Send for GeneratedSecurityRelationAnalyzerSpec<'a>
impl<'a> Sync for GeneratedSecurityRelationAnalyzerSpec<'a>
impl<'a> Unpin for GeneratedSecurityRelationAnalyzerSpec<'a>
impl<'a> UnsafeUnpin for GeneratedSecurityRelationAnalyzerSpec<'a>
impl<'a> UnwindSafe for GeneratedSecurityRelationAnalyzerSpec<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more