pub struct ClaudeMdEdit {
pub edit_type: ClaudeMdEditType,
pub original_text: String,
pub suggested_content: Option<String>,
pub target_section: Option<String>,
pub reasoning: String,
}Expand description
A proposed edit to existing CLAUDE.md content (when full_management = true).
Fields§
§edit_type: ClaudeMdEditType§original_text: String§suggested_content: Option<String>§target_section: Option<String>§reasoning: StringTrait Implementations§
Source§impl Clone for ClaudeMdEdit
impl Clone for ClaudeMdEdit
Source§fn clone(&self) -> ClaudeMdEdit
fn clone(&self) -> ClaudeMdEdit
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 ClaudeMdEdit
impl Debug for ClaudeMdEdit
Source§impl<'de> Deserialize<'de> for ClaudeMdEdit
impl<'de> Deserialize<'de> for ClaudeMdEdit
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 ClaudeMdEdit
impl RefUnwindSafe for ClaudeMdEdit
impl Send for ClaudeMdEdit
impl Sync for ClaudeMdEdit
impl Unpin for ClaudeMdEdit
impl UnsafeUnpin for ClaudeMdEdit
impl UnwindSafe for ClaudeMdEdit
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