pub struct TaskEditPreview {
pub task_id: String,
pub field: String,
pub old_value: String,
pub new_value: String,
pub warnings: Vec<ValidationWarning>,
}Expand description
Preview of what would change in a task edit operation.
Used by dry-run mode to show changes without applying them.
Fields§
§task_id: String§field: String§old_value: String§new_value: String§warnings: Vec<ValidationWarning>Trait Implementations§
Source§impl Clone for TaskEditPreview
impl Clone for TaskEditPreview
Source§fn clone(&self) -> TaskEditPreview
fn clone(&self) -> TaskEditPreview
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 moreAuto Trait Implementations§
impl Freeze for TaskEditPreview
impl RefUnwindSafe for TaskEditPreview
impl Send for TaskEditPreview
impl Sync for TaskEditPreview
impl Unpin for TaskEditPreview
impl UnsafeUnpin for TaskEditPreview
impl UnwindSafe for TaskEditPreview
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