pub struct TaskFieldPreview {
pub task_id: String,
pub key: String,
pub old_value: Option<String>,
pub new_value: String,
}Expand description
Preview of what would change in a custom field set operation.
Fields§
§task_id: String§key: String§old_value: Option<String>§new_value: StringTrait Implementations§
Source§impl Clone for TaskFieldPreview
impl Clone for TaskFieldPreview
Source§fn clone(&self) -> TaskFieldPreview
fn clone(&self) -> TaskFieldPreview
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 TaskFieldPreview
impl RefUnwindSafe for TaskFieldPreview
impl Send for TaskFieldPreview
impl Sync for TaskFieldPreview
impl Unpin for TaskFieldPreview
impl UnsafeUnpin for TaskFieldPreview
impl UnwindSafe for TaskFieldPreview
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