pub struct UpdateThread {
pub add_labels: Vec<String>,
pub remove_labels: Vec<String>,
}Expand description
Request body for [Client::update_thread]: labels to add and/or remove.
Fields§
§add_labels: Vec<String>Labels to add.
remove_labels: Vec<String>Labels to remove.
Trait Implementations§
Source§impl Clone for UpdateThread
impl Clone for UpdateThread
Source§fn clone(&self) -> UpdateThread
fn clone(&self) -> UpdateThread
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 UpdateThread
impl Debug for UpdateThread
Source§impl Default for UpdateThread
impl Default for UpdateThread
Source§fn default() -> UpdateThread
fn default() -> UpdateThread
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateThread
impl RefUnwindSafe for UpdateThread
impl Send for UpdateThread
impl Sync for UpdateThread
impl Unpin for UpdateThread
impl UnsafeUnpin for UpdateThread
impl UnwindSafe for UpdateThread
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