pub struct BatchUpdateMessagesResponse {
pub count: u64,
pub updates: Vec<UpdatedMessage>,
}Expand description
Response to [Client::batch_update_messages].
Fields§
§count: u64The number of messages updated.
updates: Vec<UpdatedMessage>The per-message results.
Trait Implementations§
Source§impl Clone for BatchUpdateMessagesResponse
impl Clone for BatchUpdateMessagesResponse
Source§fn clone(&self) -> BatchUpdateMessagesResponse
fn clone(&self) -> BatchUpdateMessagesResponse
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 BatchUpdateMessagesResponse
impl Debug for BatchUpdateMessagesResponse
Source§impl<'de> Deserialize<'de> for BatchUpdateMessagesResponse
impl<'de> Deserialize<'de> for BatchUpdateMessagesResponse
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 BatchUpdateMessagesResponse
impl RefUnwindSafe for BatchUpdateMessagesResponse
impl Send for BatchUpdateMessagesResponse
impl Sync for BatchUpdateMessagesResponse
impl Unpin for BatchUpdateMessagesResponse
impl UnsafeUnpin for BatchUpdateMessagesResponse
impl UnwindSafe for BatchUpdateMessagesResponse
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