pub struct HotColdSplit {
pub hot_functions: Vec<String>,
pub cold_functions: Vec<String>,
pub hot_threshold_percentile: f64,
}Fields§
§hot_functions: Vec<String>§cold_functions: Vec<String>§hot_threshold_percentile: f64Implementations§
Source§impl HotColdSplit
impl HotColdSplit
Trait Implementations§
Source§impl Clone for HotColdSplit
impl Clone for HotColdSplit
Source§fn clone(&self) -> HotColdSplit
fn clone(&self) -> HotColdSplit
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 HotColdSplit
impl RefUnwindSafe for HotColdSplit
impl Send for HotColdSplit
impl Sync for HotColdSplit
impl Unpin for HotColdSplit
impl UnsafeUnpin for HotColdSplit
impl UnwindSafe for HotColdSplit
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