pub struct BurstPattern {
pub burst_interval: Duration,
pub burst_size: usize,
pub hold_duration: Duration,
pub region: String,
}Expand description
Burst memory pattern - sudden spikes.
Fields§
§burst_interval: DurationTime between bursts.
burst_size: usizeSize of each burst.
hold_duration: DurationHow long before burst is released.
region: StringRegion name.
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 CustomMemoryPattern for BurstPattern
impl CustomMemoryPattern for BurstPattern
Source§impl Debug for BurstPattern
impl Debug 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