pub enum OwaspProjectKind {
Top10,
Asvs,
Masvs,
CheatSheet,
DependencyTrack,
Zap,
}Expand description
OWASP project labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for OwaspProjectKind
impl Clone for OwaspProjectKind
Source§fn clone(&self) -> OwaspProjectKind
fn clone(&self) -> OwaspProjectKind
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 OwaspProjectKind
impl Debug for OwaspProjectKind
Source§impl Display for OwaspProjectKind
impl Display for OwaspProjectKind
Source§impl FromStr for OwaspProjectKind
impl FromStr for OwaspProjectKind
Source§type Err = OwaspParseError
type Err = OwaspParseError
The associated error which can be returned from parsing.
Source§fn from_str(
input: &str,
) -> Result<OwaspProjectKind, <OwaspProjectKind as FromStr>::Err>
fn from_str( input: &str, ) -> Result<OwaspProjectKind, <OwaspProjectKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for OwaspProjectKind
impl Hash for OwaspProjectKind
Source§impl Ord for OwaspProjectKind
impl Ord for OwaspProjectKind
Source§fn cmp(&self, other: &OwaspProjectKind) -> Ordering
fn cmp(&self, other: &OwaspProjectKind) -> 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 OwaspProjectKind
impl PartialEq for OwaspProjectKind
Source§fn eq(&self, other: &OwaspProjectKind) -> bool
fn eq(&self, other: &OwaspProjectKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OwaspProjectKind
impl PartialOrd for OwaspProjectKind
impl Copy for OwaspProjectKind
impl Eq for OwaspProjectKind
impl StructuralPartialEq for OwaspProjectKind
Auto Trait Implementations§
impl Freeze for OwaspProjectKind
impl RefUnwindSafe for OwaspProjectKind
impl Send for OwaspProjectKind
impl Sync for OwaspProjectKind
impl Unpin for OwaspProjectKind
impl UnsafeUnpin for OwaspProjectKind
impl UnwindSafe for OwaspProjectKind
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