pub struct BatchGetMessagesResponse {
pub count: u64,
pub messages: Vec<Message>,
}Expand description
Response to Client::batch_get_messages.
Fields§
§count: u64The number of messages returned.
messages: Vec<Message>The requested messages.
Trait Implementations§
Source§impl Clone for BatchGetMessagesResponse
impl Clone for BatchGetMessagesResponse
Source§fn clone(&self) -> BatchGetMessagesResponse
fn clone(&self) -> BatchGetMessagesResponse
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 BatchGetMessagesResponse
impl Debug for BatchGetMessagesResponse
Source§impl<'de> Deserialize<'de> for BatchGetMessagesResponse
impl<'de> Deserialize<'de> for BatchGetMessagesResponse
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 BatchGetMessagesResponse
impl RefUnwindSafe for BatchGetMessagesResponse
impl Send for BatchGetMessagesResponse
impl Sync for BatchGetMessagesResponse
impl Unpin for BatchGetMessagesResponse
impl UnsafeUnpin for BatchGetMessagesResponse
impl UnwindSafe for BatchGetMessagesResponse
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