pub struct WriteFileOutcome {
pub path: String,
pub content: String,
pub hunks: Vec<EditHunk>,
}Fields§
§path: String§content: String§hunks: Vec<EditHunk>Trait Implementations§
Source§impl Clone for WriteFileOutcome
impl Clone for WriteFileOutcome
Source§fn clone(&self) -> WriteFileOutcome
fn clone(&self) -> WriteFileOutcome
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 WriteFileOutcome
impl Debug for WriteFileOutcome
impl Eq for WriteFileOutcome
Source§impl PartialEq for WriteFileOutcome
impl PartialEq for WriteFileOutcome
Source§fn eq(&self, other: &WriteFileOutcome) -> bool
fn eq(&self, other: &WriteFileOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WriteFileOutcome
Auto Trait Implementations§
impl Freeze for WriteFileOutcome
impl RefUnwindSafe for WriteFileOutcome
impl Send for WriteFileOutcome
impl Sync for WriteFileOutcome
impl Unpin for WriteFileOutcome
impl UnsafeUnpin for WriteFileOutcome
impl UnwindSafe for WriteFileOutcome
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