pub struct PreScanResults {
pub build_id: String,
pub app_id: String,
pub sandbox_id: Option<String>,
pub status: String,
pub modules: Vec<ScanModule>,
pub messages: Vec<PreScanMessage>,
}Expand description
Represents pre-scan results for a sandbox
Fields§
§build_id: StringBuild ID for the pre-scan
app_id: StringApplication ID
sandbox_id: Option<String>Sandbox ID
status: StringPre-scan status
modules: Vec<ScanModule>Available modules for scanning
messages: Vec<PreScanMessage>Pre-scan errors or warnings
Trait Implementations§
Source§impl Clone for PreScanResults
impl Clone for PreScanResults
Source§fn clone(&self) -> PreScanResults
fn clone(&self) -> PreScanResults
Returns a duplicate of the value. Read more
1.0.0 · 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 PreScanResults
impl Debug for PreScanResults
Source§impl<'de> Deserialize<'de> for PreScanResults
impl<'de> Deserialize<'de> for PreScanResults
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
Auto Trait Implementations§
impl Freeze for PreScanResults
impl RefUnwindSafe for PreScanResults
impl Send for PreScanResults
impl Sync for PreScanResults
impl Unpin for PreScanResults
impl UnwindSafe for PreScanResults
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