pub struct MessagesPage {
pub messages: Vec<Message>,
pub total: Option<u64>,
pub next_page_url: Option<String>,
pub prev_page_url: Option<String>,
pub last_message_id: Option<String>,
}Fields§
§messages: Vec<Message>§total: Option<u64>§next_page_url: Option<String>§prev_page_url: Option<String>§last_message_id: Option<String>Trait Implementations§
Source§impl Clone for MessagesPage
impl Clone for MessagesPage
Source§fn clone(&self) -> MessagesPage
fn clone(&self) -> MessagesPage
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 MessagesPage
impl Debug for MessagesPage
Source§impl<'de> Deserialize<'de> for MessagesPage
impl<'de> Deserialize<'de> for MessagesPage
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 MessagesPage
impl RefUnwindSafe for MessagesPage
impl Send for MessagesPage
impl Sync for MessagesPage
impl Unpin for MessagesPage
impl UnsafeUnpin for MessagesPage
impl UnwindSafe for MessagesPage
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