pub struct ListMessagesOutput {
pub items: Vec<Message>,
pub has_more: bool,
}Expand description
Output from listing messages
Fields§
§items: Vec<Message>Messages in the chat
has_more: boolWhether there are more results
Trait Implementations§
Source§impl Clone for ListMessagesOutput
impl Clone for ListMessagesOutput
Source§fn clone(&self) -> ListMessagesOutput
fn clone(&self) -> ListMessagesOutput
Returns a duplicate of the value. Read more
1.0.0 · 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 ListMessagesOutput
impl Debug for ListMessagesOutput
Source§impl<'de> Deserialize<'de> for ListMessagesOutput
impl<'de> Deserialize<'de> for ListMessagesOutput
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 ListMessagesOutput
impl RefUnwindSafe for ListMessagesOutput
impl Send for ListMessagesOutput
impl Sync for ListMessagesOutput
impl Unpin for ListMessagesOutput
impl UnwindSafe for ListMessagesOutput
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