pub struct AssigneeDiff {
pub add: Vec<u64>,
pub rem: Vec<u64>,
}Expand description
Diff envelope for PUT /task/:id assignees field.
Both arrays are sent only when non-empty so ClickUp doesn’t see noise.
Fields§
§add: Vec<u64>§rem: Vec<u64>Trait Implementations§
Source§impl Clone for AssigneeDiff
impl Clone for AssigneeDiff
Source§fn clone(&self) -> AssigneeDiff
fn clone(&self) -> AssigneeDiff
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AssigneeDiff
impl Debug for AssigneeDiff
Source§impl Default for AssigneeDiff
impl Default for AssigneeDiff
Source§fn default() -> AssigneeDiff
fn default() -> AssigneeDiff
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AssigneeDiff
impl RefUnwindSafe for AssigneeDiff
impl Send for AssigneeDiff
impl Sync for AssigneeDiff
impl Unpin for AssigneeDiff
impl UnsafeUnpin for AssigneeDiff
impl UnwindSafe for AssigneeDiff
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