pub enum SandboxAnalysisLimitation {
TextOnlyNoExecution,
NotFullShellParser,
NoExternalReputationOrScanner,
NotProofOfMaliciousIntent,
}Expand description
What: State a known limitation of deterministic static PKGBUILD analysis.
Inputs:
- Included in every
SandboxStaticAnalysisresult.
Output:
- Structured, explicit scope information rather than an implied guarantee.
Details:
- Limitations are stable categories so callers can present or persist the analysis boundary alongside findings.
Variants§
TextOnlyNoExecution
Analysis reads raw text only and never executes PKGBUILD content.
NotFullShellParser
The scanner does not implement a complete Bash parser or expansion model.
NoExternalReputationOrScanner
Remote reputation, signatures, and external scanner results are not included.
NotProofOfMaliciousIntent
Findings identify review signals and can include false negatives or positives.
Trait Implementations§
Source§impl Clone for SandboxAnalysisLimitation
impl Clone for SandboxAnalysisLimitation
Source§fn clone(&self) -> SandboxAnalysisLimitation
fn clone(&self) -> SandboxAnalysisLimitation
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 SandboxAnalysisLimitation
Source§impl Debug for SandboxAnalysisLimitation
impl Debug for SandboxAnalysisLimitation
Source§impl<'de> Deserialize<'de> for SandboxAnalysisLimitation
impl<'de> Deserialize<'de> for SandboxAnalysisLimitation
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 SandboxAnalysisLimitation
impl StructuralPartialEq for SandboxAnalysisLimitation
Auto Trait Implementations§
impl Freeze for SandboxAnalysisLimitation
impl RefUnwindSafe for SandboxAnalysisLimitation
impl Send for SandboxAnalysisLimitation
impl Sync for SandboxAnalysisLimitation
impl Unpin for SandboxAnalysisLimitation
impl UnsafeUnpin for SandboxAnalysisLimitation
impl UnwindSafe for SandboxAnalysisLimitation
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.