pub struct MutationDryRunResponse {
pub action: &'static str,
pub dry_run: bool,
pub snapshot_id: String,
pub mode: Mode,
pub selected_hunks: Vec<String>,
pub selected_changes: Vec<String>,
pub selected_change_keys: Vec<String>,
pub selected_line_ranges: Vec<String>,
pub files: Vec<String>,
pub patch: String,
pub diffstat: String,
}Fields§
§action: &'static str§dry_run: bool§snapshot_id: String§mode: Mode§selected_hunks: Vec<String>§selected_changes: Vec<String>§selected_change_keys: Vec<String>§selected_line_ranges: Vec<String>§files: Vec<String>§patch: String§diffstat: StringTrait Implementations§
Source§impl Debug for MutationDryRunResponse
impl Debug for MutationDryRunResponse
Auto Trait Implementations§
impl Freeze for MutationDryRunResponse
impl RefUnwindSafe for MutationDryRunResponse
impl Send for MutationDryRunResponse
impl Sync for MutationDryRunResponse
impl Unpin for MutationDryRunResponse
impl UnsafeUnpin for MutationDryRunResponse
impl UnwindSafe for MutationDryRunResponse
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