pub struct ResourceUsagePattern {
pub cpu_pattern: Vec<f64>,
pub memory_pattern: Vec<u64>,
pub io_pattern: Option<Vec<f64>>,
pub cache_miss_pattern: Option<Vec<f64>>,
}
Expand description
Resource usage pattern for optimization
Fields§
§cpu_pattern: Vec<f64>
CPU usage pattern
memory_pattern: Vec<u64>
Memory usage pattern
io_pattern: Option<Vec<f64>>
I/O pattern (if applicable)
cache_miss_pattern: Option<Vec<f64>>
Cache miss rate pattern
Trait Implementations§
Source§impl Clone for ResourceUsagePattern
impl Clone for ResourceUsagePattern
Source§fn clone(&self) -> ResourceUsagePattern
fn clone(&self) -> ResourceUsagePattern
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 moreAuto Trait Implementations§
impl Freeze for ResourceUsagePattern
impl RefUnwindSafe for ResourceUsagePattern
impl Send for ResourceUsagePattern
impl Sync for ResourceUsagePattern
impl Unpin for ResourceUsagePattern
impl UnwindSafe for ResourceUsagePattern
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more