pub struct Bottleneck {
pub bottleneck_type: String,
pub description: String,
pub impact_level: ImpactLevel,
pub suggested_solution: String,
}Expand description
Performance bottleneck
Fields§
§bottleneck_type: StringBottleneck type
description: StringBottleneck description
impact_level: ImpactLevelImpact level
suggested_solution: StringSuggested solution
Trait Implementations§
Source§impl Clone for Bottleneck
impl Clone for Bottleneck
Source§fn clone(&self) -> Bottleneck
fn clone(&self) -> Bottleneck
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 Bottleneck
impl Debug for Bottleneck
Source§impl<'de> Deserialize<'de> for Bottleneck
impl<'de> Deserialize<'de> for Bottleneck
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Bottleneck
impl RefUnwindSafe for Bottleneck
impl Send for Bottleneck
impl Sync for Bottleneck
impl Unpin for Bottleneck
impl UnwindSafe for Bottleneck
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