pub struct ApplyPatchCallOperationUpdateFile {
pub diff: String,
pub path: String,
pub type_: String,
}Expand description
Instruction for updating an existing file via the apply_patch tool.
Fields§
§diff: StringUnified diff content to apply to the existing file.
path: StringPath of the file to update relative to the workspace root.
type_: StringThe operation type. Always update_file.
Trait Implementations§
Source§impl Clone for ApplyPatchCallOperationUpdateFile
impl Clone for ApplyPatchCallOperationUpdateFile
Source§fn clone(&self) -> ApplyPatchCallOperationUpdateFile
fn clone(&self) -> ApplyPatchCallOperationUpdateFile
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<'de> Deserialize<'de> for ApplyPatchCallOperationUpdateFile
impl<'de> Deserialize<'de> for ApplyPatchCallOperationUpdateFile
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 ApplyPatchCallOperationUpdateFile
impl RefUnwindSafe for ApplyPatchCallOperationUpdateFile
impl Send for ApplyPatchCallOperationUpdateFile
impl Sync for ApplyPatchCallOperationUpdateFile
impl Unpin for ApplyPatchCallOperationUpdateFile
impl UnsafeUnpin for ApplyPatchCallOperationUpdateFile
impl UnwindSafe for ApplyPatchCallOperationUpdateFile
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