pub struct ScannerToggles {
pub cors: bool,
pub csp: bool,
pub graphql: bool,
pub api_security: bool,
pub jwt: bool,
pub openapi: bool,
pub mass_assignment: bool,
pub oauth_oidc: bool,
pub rate_limit: bool,
pub cve_templates: bool,
pub websocket: bool,
}Expand description
Individual scanner toggle flags.
Fields§
§cors: bool§csp: bool§graphql: bool§api_security: bool§jwt: bool§openapi: bool§mass_assignment: bool§oauth_oidc: bool§rate_limit: bool§cve_templates: bool§websocket: boolTrait Implementations§
Source§impl Clone for ScannerToggles
impl Clone for ScannerToggles
Source§fn clone(&self) -> ScannerToggles
fn clone(&self) -> ScannerToggles
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 ScannerToggles
impl RefUnwindSafe for ScannerToggles
impl Send for ScannerToggles
impl Sync for ScannerToggles
impl Unpin for ScannerToggles
impl UnsafeUnpin for ScannerToggles
impl UnwindSafe for ScannerToggles
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