pub struct ProposedEdit {
pub file: PathBuf,
pub description: String,
pub patch: String,
}Expand description
A proposed change to the agent’s source code.
Fields§
§file: PathBuf§description: String§patch: StringUnified diff (for now)
Trait Implementations§
Source§impl Clone for ProposedEdit
impl Clone for ProposedEdit
Source§fn clone(&self) -> ProposedEdit
fn clone(&self) -> ProposedEdit
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 moreAuto Trait Implementations§
impl Freeze for ProposedEdit
impl RefUnwindSafe for ProposedEdit
impl Send for ProposedEdit
impl Sync for ProposedEdit
impl Unpin for ProposedEdit
impl UnsafeUnpin for ProposedEdit
impl UnwindSafe for ProposedEdit
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