pub struct UpdatedMessage {
pub message_id: String,
pub labels: Vec<String>,
}Expand description
The API’s response to [Client::update_message]: the message id and its
labels after the update.
Fields§
§message_id: StringId of the updated message.
labels: Vec<String>The message’s labels after the update.
Trait Implementations§
Source§impl Clone for UpdatedMessage
impl Clone for UpdatedMessage
Source§fn clone(&self) -> UpdatedMessage
fn clone(&self) -> UpdatedMessage
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 UpdatedMessage
impl Debug for UpdatedMessage
Source§impl<'de> Deserialize<'de> for UpdatedMessage
impl<'de> Deserialize<'de> for UpdatedMessage
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 UpdatedMessage
impl RefUnwindSafe for UpdatedMessage
impl Send for UpdatedMessage
impl Sync for UpdatedMessage
impl Unpin for UpdatedMessage
impl UnsafeUnpin for UpdatedMessage
impl UnwindSafe for UpdatedMessage
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