pub enum OwaspTop10Category {
BrokenAccessControl,
CryptographicFailures,
Injection,
InsecureDesign,
SecurityMisconfiguration,
VulnerableAndOutdatedComponents,
IdentificationAndAuthenticationFailures,
SoftwareAndDataIntegrityFailures,
SecurityLoggingAndMonitoringFailures,
ServerSideRequestForgery,
Other,
}Expand description
OWASP Top 10 style category labels.
Variants§
BrokenAccessControl
CryptographicFailures
Injection
InsecureDesign
SecurityMisconfiguration
VulnerableAndOutdatedComponents
IdentificationAndAuthenticationFailures
SoftwareAndDataIntegrityFailures
SecurityLoggingAndMonitoringFailures
ServerSideRequestForgery
Other
Implementations§
Trait Implementations§
Source§impl Clone for OwaspTop10Category
impl Clone for OwaspTop10Category
Source§fn clone(&self) -> OwaspTop10Category
fn clone(&self) -> OwaspTop10Category
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 OwaspTop10Category
impl Debug for OwaspTop10Category
Source§impl Display for OwaspTop10Category
impl Display for OwaspTop10Category
Source§impl FromStr for OwaspTop10Category
impl FromStr for OwaspTop10Category
Source§impl Hash for OwaspTop10Category
impl Hash for OwaspTop10Category
Source§impl Ord for OwaspTop10Category
impl Ord for OwaspTop10Category
Source§fn cmp(&self, other: &OwaspTop10Category) -> Ordering
fn cmp(&self, other: &OwaspTop10Category) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OwaspTop10Category
impl PartialEq for OwaspTop10Category
Source§impl PartialOrd for OwaspTop10Category
impl PartialOrd for OwaspTop10Category
impl Copy for OwaspTop10Category
impl Eq for OwaspTop10Category
impl StructuralPartialEq for OwaspTop10Category
Auto Trait Implementations§
impl Freeze for OwaspTop10Category
impl RefUnwindSafe for OwaspTop10Category
impl Send for OwaspTop10Category
impl Sync for OwaspTop10Category
impl Unpin for OwaspTop10Category
impl UnsafeUnpin for OwaspTop10Category
impl UnwindSafe for OwaspTop10Category
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