pub struct PreviewChange {
pub step_id: String,
pub change_type: ChangeType,
pub path: String,
pub description: String,
}Expand description
A change that would be made in dry-run mode
Fields§
§step_id: StringStep ID
change_type: ChangeTypeType of change
path: StringPath affected
description: StringDescription of the change
Trait Implementations§
Source§impl Clone for PreviewChange
impl Clone for PreviewChange
Source§fn clone(&self) -> PreviewChange
fn clone(&self) -> PreviewChange
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 PreviewChange
impl Debug for PreviewChange
Source§impl<'de> Deserialize<'de> for PreviewChange
impl<'de> Deserialize<'de> for PreviewChange
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 PreviewChange
impl RefUnwindSafe for PreviewChange
impl Send for PreviewChange
impl Sync for PreviewChange
impl Unpin for PreviewChange
impl UnwindSafe for PreviewChange
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