pub enum OwaspControlArea {
AccessControl,
Authentication,
Cryptography,
InputValidation,
LoggingAndMonitoring,
SecureConfiguration,
SupplyChain,
Other,
}Expand description
Application security control-area labels.
Variants§
AccessControl
Authentication
Cryptography
InputValidation
LoggingAndMonitoring
SecureConfiguration
SupplyChain
Other
Implementations§
Trait Implementations§
Source§impl Clone for OwaspControlArea
impl Clone for OwaspControlArea
Source§fn clone(&self) -> OwaspControlArea
fn clone(&self) -> OwaspControlArea
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OwaspControlArea
impl Debug for OwaspControlArea
Source§impl Display for OwaspControlArea
impl Display for OwaspControlArea
Source§impl FromStr for OwaspControlArea
impl FromStr for OwaspControlArea
Source§type Err = OwaspParseError
type Err = OwaspParseError
The associated error which can be returned from parsing.
Source§fn from_str(
input: &str,
) -> Result<OwaspControlArea, <OwaspControlArea as FromStr>::Err>
fn from_str( input: &str, ) -> Result<OwaspControlArea, <OwaspControlArea as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for OwaspControlArea
impl Hash for OwaspControlArea
Source§impl Ord for OwaspControlArea
impl Ord for OwaspControlArea
Source§fn cmp(&self, other: &OwaspControlArea) -> Ordering
fn cmp(&self, other: &OwaspControlArea) -> Ordering
1.21.0 (const: unstable) · 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 OwaspControlArea
impl PartialEq for OwaspControlArea
Source§fn eq(&self, other: &OwaspControlArea) -> bool
fn eq(&self, other: &OwaspControlArea) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OwaspControlArea
impl PartialOrd for OwaspControlArea
impl Copy for OwaspControlArea
impl Eq for OwaspControlArea
impl StructuralPartialEq for OwaspControlArea
Auto Trait Implementations§
impl Freeze for OwaspControlArea
impl RefUnwindSafe for OwaspControlArea
impl Send for OwaspControlArea
impl Sync for OwaspControlArea
impl Unpin for OwaspControlArea
impl UnsafeUnpin for OwaspControlArea
impl UnwindSafe for OwaspControlArea
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