pub enum InsightCategory {
ProjectPatterns,
Debugging,
Architecture,
Performance,
Security,
General,
}Expand description
Category of an imported memory insight.
Variants§
ProjectPatterns
Project-level patterns and conventions.
Debugging
Debugging strategies and fixes.
Architecture
Architecture decisions.
Performance
Performance observations.
Security
Security-related insights.
General
General knowledge.
Implementations§
Trait Implementations§
Source§impl Clone for InsightCategory
impl Clone for InsightCategory
Source§fn clone(&self) -> InsightCategory
fn clone(&self) -> InsightCategory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InsightCategory
impl Debug for InsightCategory
Source§impl<'de> Deserialize<'de> for InsightCategory
impl<'de> Deserialize<'de> for InsightCategory
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
impl Eq for InsightCategory
Source§impl Hash for InsightCategory
impl Hash for InsightCategory
Source§impl PartialEq for InsightCategory
impl PartialEq for InsightCategory
Source§fn eq(&self, other: &InsightCategory) -> bool
fn eq(&self, other: &InsightCategory) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InsightCategory
impl Serialize for InsightCategory
impl StructuralPartialEq for InsightCategory
Auto Trait Implementations§
impl Freeze for InsightCategory
impl RefUnwindSafe for InsightCategory
impl Send for InsightCategory
impl Sync for InsightCategory
impl Unpin for InsightCategory
impl UnsafeUnpin for InsightCategory
impl UnwindSafe for InsightCategory
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