pub struct BeginScanRequest {
pub app_id: String,
pub sandbox_id: Option<String>,
pub modules: Option<String>,
pub scan_all_top_level_modules: Option<bool>,
pub scan_all_nonfatal_top_level_modules: Option<bool>,
pub scan_previously_selected_modules: Option<bool>,
}
Expand description
Request for beginning a scan
Fields§
§app_id: String
Application ID
sandbox_id: Option<String>
Sandbox ID (optional)
modules: Option<String>
Modules to scan (comma-separated module IDs)
scan_all_top_level_modules: Option<bool>
Scan all top level modules
scan_all_nonfatal_top_level_modules: Option<bool>
Scan all non-fatal top level modules
scan_previously_selected_modules: Option<bool>
Scan previously selected modules
Trait Implementations§
Source§impl Clone for BeginScanRequest
impl Clone for BeginScanRequest
Source§fn clone(&self) -> BeginScanRequest
fn clone(&self) -> BeginScanRequest
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 moreAuto Trait Implementations§
impl Freeze for BeginScanRequest
impl RefUnwindSafe for BeginScanRequest
impl Send for BeginScanRequest
impl Sync for BeginScanRequest
impl Unpin for BeginScanRequest
impl UnwindSafe for BeginScanRequest
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