pub struct BottleneckReport {
pub bottlenecks: Vec<Bottleneck>,
pub memory_pressure_high: bool,
}Expand description
Bottleneck analysis report
Fields§
§bottlenecks: Vec<Bottleneck>§memory_pressure_high: boolImplementations§
Trait Implementations§
Source§impl Clone for BottleneckReport
impl Clone for BottleneckReport
Source§fn clone(&self) -> BottleneckReport
fn clone(&self) -> BottleneckReport
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 BottleneckReport
impl Debug for BottleneckReport
Auto Trait Implementations§
impl Freeze for BottleneckReport
impl RefUnwindSafe for BottleneckReport
impl Send for BottleneckReport
impl Sync for BottleneckReport
impl Unpin for BottleneckReport
impl UnwindSafe for BottleneckReport
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