pub struct CommitDryRunResponse {
pub dry_run: bool,
pub snapshot_id: String,
pub messages: Vec<String>,
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§
§dry_run: bool§snapshot_id: String§messages: Vec<String>§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 CommitDryRunResponse
impl Debug for CommitDryRunResponse
Auto Trait Implementations§
impl Freeze for CommitDryRunResponse
impl RefUnwindSafe for CommitDryRunResponse
impl Send for CommitDryRunResponse
impl Sync for CommitDryRunResponse
impl Unpin for CommitDryRunResponse
impl UnsafeUnpin for CommitDryRunResponse
impl UnwindSafe for CommitDryRunResponse
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