pub enum BurstPattern {
KeyboardStorm {
count: usize,
},
MouseFlood {
count: usize,
width: u16,
height: u16,
},
MixedBurst {
count: usize,
width: u16,
height: u16,
},
LongPaste {
size_bytes: usize,
},
RapidResize {
count: usize,
},
}Expand description
Pattern type for input storm generation.
Variants§
KeyboardStorm
Rapid keyboard events (simulates typing at impossible speed).
MouseFlood
High-frequency mouse-move events.
Fields
MixedBurst
Interleaved keyboard + mouse + paste events.
Fields
LongPaste
Single large paste event.
RapidResize
Rapid resize events.
Implementations§
Trait Implementations§
Source§impl Clone for BurstPattern
impl Clone for BurstPattern
Source§fn clone(&self) -> BurstPattern
fn clone(&self) -> BurstPattern
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 BurstPattern
impl Debug for BurstPattern
Source§impl PartialEq for BurstPattern
impl PartialEq for BurstPattern
impl StructuralPartialEq for BurstPattern
Auto Trait Implementations§
impl Freeze for BurstPattern
impl RefUnwindSafe for BurstPattern
impl Send for BurstPattern
impl Sync for BurstPattern
impl Unpin for BurstPattern
impl UnsafeUnpin for BurstPattern
impl UnwindSafe for BurstPattern
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