pub enum AttackStrategy {
CpuStress,
MemoryExhaustion,
DiskThrashing,
NetworkFlood,
ConcurrencyStorm,
TimeBomb,
}Variants§
Implementations§
Source§impl AttackStrategy
impl AttackStrategy
pub fn description(&self) -> &str
Trait Implementations§
Source§impl Clone for AttackStrategy
impl Clone for AttackStrategy
Source§fn clone(&self) -> AttackStrategy
fn clone(&self) -> AttackStrategy
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 moreimpl Copy for AttackStrategy
Source§impl Debug for AttackStrategy
impl Debug for AttackStrategy
impl Eq for AttackStrategy
Source§impl PartialEq for AttackStrategy
impl PartialEq for AttackStrategy
impl StructuralPartialEq for AttackStrategy
Auto Trait Implementations§
impl Freeze for AttackStrategy
impl RefUnwindSafe for AttackStrategy
impl Send for AttackStrategy
impl Sync for AttackStrategy
impl Unpin for AttackStrategy
impl UnsafeUnpin for AttackStrategy
impl UnwindSafe for AttackStrategy
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