pub struct BeginPreScanRequest {
pub app_id: String,
pub sandbox_id: Option<String>,
pub auto_scan: Option<bool>,
pub scan_all_nonfatal_top_level_modules: Option<bool>,
pub include_new_modules: Option<bool>,
}
Expand description
Request for beginning a pre-scan
Fields§
§app_id: String
Application ID
sandbox_id: Option<String>
Sandbox ID (optional)
auto_scan: Option<bool>
Auto-scan flag
scan_all_nonfatal_top_level_modules: Option<bool>
Scan all non-fatal top level modules
include_new_modules: Option<bool>
Include new modules
Trait Implementations§
Source§impl Clone for BeginPreScanRequest
impl Clone for BeginPreScanRequest
Source§fn clone(&self) -> BeginPreScanRequest
fn clone(&self) -> BeginPreScanRequest
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 BeginPreScanRequest
impl RefUnwindSafe for BeginPreScanRequest
impl Send for BeginPreScanRequest
impl Sync for BeginPreScanRequest
impl Unpin for BeginPreScanRequest
impl UnwindSafe for BeginPreScanRequest
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