pub struct Improvement {
pub title: String,
pub reason: String,
pub approach: String,
pub priority: u8,
pub target_files: Vec<String>,
}Expand description
A proposed self-improvement.
Fields§
§title: StringWhat to improve
reason: StringWhy — what telemetry signal triggered this
approach: StringSuggested approach
priority: u8Priority: 1 (critical) to 5 (nice-to-have)
target_files: Vec<String>Which file(s) to modify
Trait Implementations§
Source§impl Clone for Improvement
impl Clone for Improvement
Source§fn clone(&self) -> Improvement
fn clone(&self) -> Improvement
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 Improvement
impl Debug for Improvement
Source§impl<'de> Deserialize<'de> for Improvement
impl<'de> Deserialize<'de> for Improvement
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 Improvement
impl RefUnwindSafe for Improvement
impl Send for Improvement
impl Sync for Improvement
impl Unpin for Improvement
impl UnsafeUnpin for Improvement
impl UnwindSafe for Improvement
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