pub struct UpdatedThread {
pub thread_id: String,
pub labels: Vec<String>,
}Expand description
The API’s response to update_thread: the thread id and its
labels after the update.
Fields§
§thread_id: StringId of the updated thread.
labels: Vec<String>The thread’s labels after the update.
Trait Implementations§
Source§impl Clone for UpdatedThread
impl Clone for UpdatedThread
Source§fn clone(&self) -> UpdatedThread
fn clone(&self) -> UpdatedThread
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 UpdatedThread
impl Debug for UpdatedThread
Source§impl<'de> Deserialize<'de> for UpdatedThread
impl<'de> Deserialize<'de> for UpdatedThread
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdatedThread
impl RefUnwindSafe for UpdatedThread
impl Send for UpdatedThread
impl Sync for UpdatedThread
impl Unpin for UpdatedThread
impl UnsafeUnpin for UpdatedThread
impl UnwindSafe for UpdatedThread
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