pub struct PatchResult {
pub applied: bool,
pub changed_files: Vec<WorkspacePath>,
pub conflicts: Vec<PatchConflict>,
pub diff: WorkspaceDiff,
pub snapshot_before: WorkspaceSnapshot,
pub snapshot_after: Option<WorkspaceSnapshot>,
pub metadata: RunMetadata,
}Expand description
Result from applying or dry-running a patch.
Fields§
§applied: boolWhether changes were written.
changed_files: Vec<WorkspacePath>Files that would change or did change.
conflicts: Vec<PatchConflict>Patch conflicts.
diff: WorkspaceDiffDiff summary.
snapshot_before: WorkspaceSnapshotSnapshot before validation.
snapshot_after: Option<WorkspaceSnapshot>Snapshot after writing, absent for dry-run or conflict results.
metadata: RunMetadataHost-owned metadata.
Trait Implementations§
Source§impl Clone for PatchResult
impl Clone for PatchResult
Source§fn clone(&self) -> PatchResult
fn clone(&self) -> PatchResult
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 PatchResult
impl Debug for PatchResult
Source§impl<'de> Deserialize<'de> for PatchResult
impl<'de> Deserialize<'de> for PatchResult
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
impl Eq for PatchResult
Source§impl PartialEq for PatchResult
impl PartialEq for PatchResult
Source§impl Serialize for PatchResult
impl Serialize for PatchResult
impl StructuralPartialEq for PatchResult
Auto Trait Implementations§
impl Freeze for PatchResult
impl RefUnwindSafe for PatchResult
impl Send for PatchResult
impl Sync for PatchResult
impl Unpin for PatchResult
impl UnsafeUnpin for PatchResult
impl UnwindSafe for PatchResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.